Files
NativeScript/apps/app/ui-tests-app/css/listview.xml
2017-02-20 17:31:10 +02:00

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>