mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* Update README.md * comment flip * skip specific test suites with known issues * restore skipped ios tests * chore: update css for ios * chore: update android css * chore: tab-root tests remove suspend for android * chore: frame-root tested on api23, api27 and ios11 * chore: fix tslint * chore: frame-tab-root tests api27 * chore: lower font size
15 lines
504 B
XML
15 lines
504 B
XML
<Page class="page" navigatingTo="onNavigatingTo" xmlns="http://schemas.nativescript.org/tns.xsd">
|
|
|
|
<ActionBar >
|
|
<Label text="Players"></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>
|