mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
16 lines
586 B
XML
16 lines
586 B
XML
<Page loaded="loaded">
|
|
<StackLayout>
|
|
<Label text="lightskyblue separator"></Label>
|
|
<ListView items="{{ items }}" style="separator-color:red; background-color:lightskyblue">
|
|
<ListView.itemTemplate>
|
|
<Label text="{{ $value }}"/>
|
|
</ListView.itemTemplate>
|
|
</ListView>
|
|
<Label text="transparent separator"></Label>
|
|
<ListView items="{{ items }}" style="separator-color:transparent; background-color:transparent">
|
|
<ListView.itemTemplate>
|
|
<Label text="{{ $value }}" />
|
|
</ListView.itemTemplate>
|
|
</ListView>
|
|
</StackLayout>
|
|
</Page> |