mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
23 lines
1.1 KiB
XML
23 lines
1.1 KiB
XML
<Page xmlns="http://schemas.nativescript.org/tns.xsd" id="page" navigatingTo="onNavigatingTo">
|
|
<StackLayout id="stack">
|
|
|
|
<!-- <Button id="label" text="{{ message }}" height="100" width="100" color="blue" backgroundColor="red"></Button> -->
|
|
|
|
<ListView items="{{ myTitles }}"
|
|
itemTap="onItemTap"
|
|
loaded="{{ onListViewLoaded }}"
|
|
separatorColor="orangered" rowHeight="50"
|
|
class="list-group" id="listView" row="2">
|
|
<ListView.itemTemplate>
|
|
<!-- The item template can only have a single root view container (e.g. GriLayout, StackLayout, etc.) -->
|
|
<StackLayout class="list-group-item">
|
|
<Label text="{{ title || 'Downloading...' }}" textWrap="true" class="title" />
|
|
<Label text="{{ title || 'Downloading...' }}" textWrap="true" class="title" />
|
|
<Label text="{{ title || 'Downloading...' }}" textWrap="true" class="title" />
|
|
</StackLayout>
|
|
</ListView.itemTemplate>
|
|
</ListView>
|
|
|
|
</StackLayout>
|
|
</Page>
|