Files
NativeScript/apps/custom-root-view/main-page.xml
Hristo Hristov e709485bb6 Added an option to change the rootView.
Fixed crash where activity was incorrectly using existing initialized frame.
Fixed TabView to use _nativeView instead of Frame.
2016-02-05 15:09:28 +02:00

17 lines
503 B
XML

<TabView xmlns="http://schemas.nativescript.org/tns.xsd">
<TabView.items>
<TabViewItem title="List">
<TabViewItem.view>
<Frame />
</TabViewItem.view>
</TabViewItem>
<TabViewItem title="About">
<TabViewItem.view>
<StackLayout>
<Image margin="10" src="~/res/telerik-logo.png" />
<Label margin="10" textWrap="true" text="{{ aboutText }}" />
</StackLayout>
</TabViewItem.view>
</TabViewItem>
</TabView.items>
</TabView>