mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
13 lines
476 B
XML
13 lines
476 B
XML
<Page xmlns="http://schemas.nativescript.org/tns.xsd">
|
|
<StackLayout>
|
|
<Button height="100" width="100" loaded="onButtonLoaded" text="Click me 3rd (Android)" style.fontSize="8"/>
|
|
<ListView loaded="onListViewLoaded">
|
|
<ListView.itemTemplate>
|
|
<StackLayout>
|
|
<TextField text="Click me 1st"/>
|
|
<TextField text="Click me 2nd" keyboardType="number"/>
|
|
</StackLayout>
|
|
</ListView.itemTemplate>
|
|
</ListView>
|
|
</StackLayout>
|
|
</Page> |