Skip to content

Instantly share code, notes, and snippets.

@naranjja
Created April 20, 2018 23:21
Show Gist options
  • Save naranjja/feb6b4e16da042e0869abcecd82e74f1 to your computer and use it in GitHub Desktop.
Save naranjja/feb6b4e16da042e0869abcecd82e74f1 to your computer and use it in GitHub Desktop.
NativeScript bottom tab navigation
<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>
<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