Created
April 20, 2018 23:21
-
-
Save naranjja/feb6b4e16da042e0869abcecd82e74f1 to your computer and use it in GitHub Desktop.
NativeScript bottom tab navigation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Page> | |
<TabView androidTabsPosition="bottom"> | |
<TabViewItem title="Go to Page 1"> | |
<StackLayout> | |
<Label text="Welcome to Page 1" /> | |
</StackLayout> | |
</TabViewItem> | |
<TabViewItem title="Go to Page 2"> | |
<Frame defaultPage="views/page2/page2" /> | |
</TabViewItem> | |
</TabView> | |
</Page> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Page> | |
<StackLayout> | |
<Label textWrap="true" text="Welcome to Page 2" /> | |
</StackLayout> | |
</Page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment