mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
15 lines
545 B
XML
15 lines
545 B
XML
<Page class="page" navigatingTo="onNavigatingTo" xmlns="http://schemas.nativescript.org/tns.xsd">
|
|
|
|
<ActionBar class="action-bar">
|
|
<Label class="action-bar-title" text="Teams"></Label>
|
|
</ActionBar>
|
|
|
|
<ListView 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>
|
|
</Page>
|