mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
37 lines
1.0 KiB
XML
37 lines
1.0 KiB
XML
<Page>
|
|
|
|
<Tabs id="tabsNav" selectedIndexChanged="onSelectedIndexChanged">
|
|
|
|
<TabStrip>
|
|
<TabStripItem title="First" tap="onFirstTabStripItemTap"></TabStripItem>
|
|
<TabStripItem tap="onSecondTabStripItemTap">
|
|
<Label text="Second" />
|
|
</TabStripItem>
|
|
<TabStripItem title="First" tap="onThirdTabStripItemTap">
|
|
<Label text="Third" />
|
|
</TabStripItem>
|
|
</TabStrip>
|
|
|
|
<TabContentItem>
|
|
<StackLayout>
|
|
<Label text="First View" backgroundColor="red" />
|
|
<Button tap="goToSecond" text="go to second" />
|
|
</StackLayout>
|
|
</TabContentItem>
|
|
<TabContentItem>
|
|
<StackLayout>
|
|
<Label text="Second View" backgroundColor="green" />
|
|
<Button tap="goToThird" text="go to thrid" />
|
|
</StackLayout>
|
|
</TabContentItem>
|
|
<TabContentItem>
|
|
<StackLayout>
|
|
<Label text="First View" backgroundColor="blue" />
|
|
<Button tap="goToFirst" text="go to first" />
|
|
</StackLayout>
|
|
</TabContentItem>
|
|
|
|
</Tabs>
|
|
|
|
</Page>
|