mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-26 03:01:51 +08:00
22 lines
775 B
XML
22 lines
775 B
XML
<Page xmlns="http://www.nativescript.org/tns.xsd" loaded="pageLoaded">
|
|
<TabView>
|
|
<TabView.items>
|
|
<TabViewItem title="First">
|
|
<TabViewItem.view>
|
|
<StackLayout class="tab-content">
|
|
<Label text="First View" class="title"/>
|
|
<Label text="This is the content of the first tab." textWrap="true"/>
|
|
</StackLayout>
|
|
</TabViewItem.view>
|
|
</TabViewItem>
|
|
<TabViewItem title="Second">
|
|
<TabViewItem.view>
|
|
<StackLayout class="tab-content">
|
|
<Label text="Second View" class="title"/>
|
|
<Label text="This is the content of the second tab." textWrap="true"/>
|
|
</StackLayout>
|
|
</TabViewItem.view>
|
|
</TabViewItem>
|
|
</TabView.items>
|
|
</TabView>
|
|
</Page> |