mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Fixed crash where activity was incorrectly using existing initialized frame. Fixed TabView to use _nativeView instead of Frame.
17 lines
503 B
XML
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> |