mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-26 03:01:51 +08:00
23 lines
875 B
XML
23 lines
875 B
XML
<TabView androidTabsPosition="bottom">
|
|
<TabViewItem title="Players">
|
|
<GridLayout rows="auto, auto, *">
|
|
<Label text="tabview root bottom home" />
|
|
<Button row="1" text="reset app" tap="onReset" />
|
|
<GridLayout row="2">
|
|
<Frame defaultPage="players/players-items-page" />
|
|
</GridLayout>
|
|
</GridLayout>
|
|
</TabViewItem>
|
|
<TabViewItem title="Dummy">
|
|
<!-- this tab serves as dummy so the actual teams tab is not loaded by default -->
|
|
<Label text="this is a tab" />
|
|
</TabViewItem>
|
|
<TabViewItem title="Teams">
|
|
<GridLayout rows="auto, *">
|
|
<Button text="reset app" tap="onReset" />
|
|
<GridLayout row="1">
|
|
<Frame defaultPage="teams/teams-items-page" />
|
|
</GridLayout>
|
|
</GridLayout>
|
|
</TabViewItem>
|
|
</TabView> |