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