mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
60 lines
2.0 KiB
XML
60 lines
2.0 KiB
XML
<Page>
|
|
|
|
<ActionBar title="BottomNavigation" icon="" class="action-bar">
|
|
</ActionBar>
|
|
|
|
<BottomNavigation id="bottomNav" automationText="tabNavigation" >
|
|
<TabStrip iosIconRenderingMode="alwaysOriginal">
|
|
<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>
|
|
<TabStripItem title="Music" iconSource="res://icon"></TabStripItem>
|
|
</TabStrip>
|
|
|
|
<TabContentItem>
|
|
<StackLayout>
|
|
<Label text="First View"/>
|
|
<Button tap="goToSecond" text="go to second" automationText="goToSecond" />
|
|
</StackLayout>
|
|
</TabContentItem>
|
|
<TabContentItem>
|
|
<StackLayout>
|
|
<Label text="Second View"/>
|
|
<Button tap="goToFirst" text="go to first" automationText="goToFirst" />
|
|
</StackLayout>
|
|
</TabContentItem>
|
|
<TabContentItem>
|
|
<StackLayout>
|
|
<Label text="First View"/>
|
|
<Button tap="goToSecond" text="go to second" automationText="goToSecond" />
|
|
</StackLayout>
|
|
</TabContentItem>
|
|
<TabContentItem>
|
|
<StackLayout>
|
|
<Label text="Second View"/>
|
|
<Button tap="goToFirst" text="go to first" automationText="goToFirst" />
|
|
</StackLayout>
|
|
</TabContentItem>
|
|
<TabContentItem>
|
|
<StackLayout>
|
|
<Label text="First View"/>
|
|
<Button tap="goToSecond" text="go to second" automationText="goToSecond" />
|
|
</StackLayout>
|
|
</TabContentItem>
|
|
<TabContentItem>
|
|
<StackLayout>
|
|
<Label text="First View"/>
|
|
<Button tap="goToSecond" text="go to second" automationText="goToSecond" />
|
|
</StackLayout>
|
|
</TabContentItem>
|
|
</BottomNavigation>
|
|
</Page>
|