mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-26 03:01:51 +08:00
29 lines
1.2 KiB
XML
29 lines
1.2 KiB
XML
<Page xmlns="http://schemas.nativescript.org/tns.xsd" navigatingTo="navigatingTo" class="page">
|
|
|
|
<Page.actionBar>
|
|
<ActionBar title="TabView content sizing" icon="" class="action-bar">
|
|
</ActionBar>
|
|
</Page.actionBar>
|
|
|
|
<TabView id="tabViewContainer">
|
|
<TabView.items>
|
|
<TabViewItem title="Tab1" >
|
|
<TabViewItem.view>
|
|
<GridLayout rows="*, auto" columns="*">
|
|
<StackLayout row="0" backgroundColor="lightblue"></StackLayout>
|
|
<StackLayout row="1" backgroundColor="green" height="50"></StackLayout>
|
|
</GridLayout>
|
|
</TabViewItem.view>
|
|
</TabViewItem>
|
|
<TabViewItem title="Tab2" >
|
|
<TabViewItem.view>
|
|
<GridLayout rows="*, auto" columns="*">
|
|
<StackLayout row="0" backgroundColor="lightblue"></StackLayout>
|
|
<StackLayout row="1" backgroundColor="red" height="50"></StackLayout>
|
|
</GridLayout>
|
|
</TabViewItem.view>
|
|
</TabViewItem>
|
|
</TabView.items>
|
|
</TabView>
|
|
|
|
</Page> |