mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 04:41:36 +08:00
21 lines
719 B
XML
21 lines
719 B
XML
<Page>
|
|
<StackLayout>
|
|
<StackLayout loaded="stack0Loaded" orientation="horizontal">
|
|
<TextField id="tf" text="{{ textSource }}" width="150" />
|
|
<Button id="btn" width="150" />
|
|
</StackLayout>
|
|
<StackLayout loaded="stack1Loaded">
|
|
<Label id="label" text="{{ text }}" />
|
|
</StackLayout>
|
|
<StackLayout loaded="stack2Loaded">
|
|
<Button id="button" text="{{ myProperty }}" tap="{{ myFunction }}" />
|
|
</StackLayout>
|
|
<StackLayout loaded="stack3Loaded">
|
|
<ListView id="listView" items="{{ myItems }}">
|
|
<ListView.itemTemplate>
|
|
<Label id="item" text="{{ text }}" />
|
|
</ListView.itemTemplate>
|
|
</ListView>
|
|
</StackLayout>
|
|
</StackLayout>
|
|
</Page> |