Files
NativeScript/e2e/dev-tools/app/home/home-items-page.xml
2019-11-07 15:37:26 +02:00

25 lines
833 B
XML

<!--
This is the page that is presented in the 'Home' tab.
Feel free to customize layouts and components to change how the tab view looks.
-->
<Page
class="page"
navigatingTo="onNavigatingTo"
xmlns="http://schemas.nativescript.org/tns.xsd">
<ActionBar class="action-bar">
<Label class="action-bar-title" text="Home"></Label>
</ActionBar>
<GridLayout rows="auto *">
<TextField text="hey there" />
<ListView row="1" items="{{ items }}" itemTap="onItemTap" class="list-group">
<ListView.itemTemplate>
<StackLayout orientation="horizontal" class="list-group-item">
<Label text="{{ name }}" textWrap="true"></Label>
</StackLayout>
</ListView.itemTemplate>
</ListView>
</GridLayout>
</Page>