mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
40 lines
1.2 KiB
XML
40 lines
1.2 KiB
XML
<Page>
|
|
|
|
<ActionBar title="Tabs Swipe Enabled False" icon="" class="action-bar">
|
|
</ActionBar>
|
|
|
|
<Tabs id="tabs" swipeEnabled="false">
|
|
<TabStrip>
|
|
<TabStripItem title="First Tab 11" iconSource="res://icon"></TabStripItem>
|
|
<TabStripItem>
|
|
<!-- <Image src="res://icon" /> -->
|
|
<Label text="News" />
|
|
</TabStripItem>
|
|
<!-- <TabStripItem title="Favorites" iconSource="res://icon"></TabStripItem> -->
|
|
<TabStripItem>
|
|
<!-- <Image src="res://icon" /> -->
|
|
<Label text="Places" />
|
|
</TabStripItem>
|
|
<!-- <TabStripItem title="Music" iconSource="res://icon"></TabStripItem> -->
|
|
</TabStrip>
|
|
|
|
<TabContentItem>
|
|
<StackLayout backgroundColor="blue">
|
|
<Label text="First View"/>
|
|
<Button tap="goToSecond" text="go to second" />
|
|
</StackLayout>
|
|
</TabContentItem>
|
|
<TabContentItem>
|
|
<StackLayout backgroundColor="red">
|
|
<Label text="Second View"/>
|
|
<Button tap="goToFirst" text="go to first" />
|
|
</StackLayout>
|
|
</TabContentItem>
|
|
<TabContentItem>
|
|
<StackLayout backgroundColor="green">
|
|
<Label text="First View"/>
|
|
<Button tap="goToSecond" text="go to second" />
|
|
</StackLayout>
|
|
</TabContentItem>
|
|
</Tabs>
|
|
</Page> |