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>
|
|
|
|
<ActionBar title="Tabs" icon="" class="action-bar">
|
|
</ActionBar>
|
|
|
|
<Tabs id="tabsNav" automationText="tabNavigation">
|
|
<TabStrip backgroundColor="palevioletred">
|
|
<TabStripItem title="First Tab 11" iconSource="res://icon"></TabStripItem>
|
|
<TabStripItem>
|
|
<Label text="News" />
|
|
</TabStripItem>
|
|
<TabStripItem>
|
|
<Label text="Places" />
|
|
</TabStripItem>
|
|
</TabStrip>
|
|
|
|
<TabContentItem>
|
|
<StackLayout backgroundColor="skyblue">
|
|
<Label text="First View"/>
|
|
<Button tap="goToSecond" text="go to second" />
|
|
</StackLayout>
|
|
</TabContentItem>
|
|
<TabContentItem>
|
|
<StackLayout backgroundColor="gold">
|
|
<Label text="Second View"/>
|
|
<Button tap="goToFirst" text="go to first" />
|
|
</StackLayout>
|
|
</TabContentItem>
|
|
<TabContentItem>
|
|
<StackLayout backgroundColor="olive">
|
|
<Label text="First View"/>
|
|
<Button tap="goToSecond" text="go to second" />
|
|
</StackLayout>
|
|
</TabContentItem>
|
|
</Tabs>
|
|
</Page>
|