mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
20 lines
789 B
XML
20 lines
789 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<Page loaded="pageLoaded">
|
|
<GridLayout rows="auto, *">
|
|
<StackLayout id="parentLayout" row="0" >
|
|
<TextView automationText="tv" id="textView" text="{{ exampleName }}" />
|
|
<Button automationText="Run" id="btnRun" text="Run" tap="{{ loadExmaple }}" />
|
|
</StackLayout>
|
|
<ScrollView row="1">
|
|
<WrapLayout id="wrapLayoutWithExamples"/>
|
|
</ScrollView>
|
|
<ListView items="{{ allExamples }}" row="1" itemTap="{{ loadExampleFromListView }}" id="allExamplesListView" >
|
|
<ListView.itemTemplate>
|
|
<GridLayout columns="*,2*" >
|
|
<Label text="{{ name }}" />
|
|
<Label text="{{ path }}" textWrap="true" col="1"/>
|
|
</GridLayout>
|
|
</ListView.itemTemplate>
|
|
</ListView>
|
|
</GridLayout>
|
|
</Page> |