mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
17 lines
689 B
XML
17 lines
689 B
XML
<Page xmlns="http://schemas.nativescript.org/tns.xsd">
|
|
<TabView style="font-family: FontAwesome;color: red;" selectedColor="green">
|
|
<TabView.items>
|
|
<TabViewItem ios:title="Tab 1 " android:title="Tab 1 ">
|
|
<TabViewItem.view>
|
|
<Label text="Tab 1 " style="font-family: Material-Design-Iconic-Font" />
|
|
</TabViewItem.view>
|
|
</TabViewItem>
|
|
<TabViewItem ios:title="Tab 2 " android:title="Tab 2 ">
|
|
<TabViewItem.view>
|
|
<Label text="Tab 2 " style="font-family: Material-Design-Iconic-Font" />
|
|
</TabViewItem.view>
|
|
</TabViewItem>
|
|
</TabView.items>
|
|
</TabView>
|
|
</Page>
|