Skip to content

Instantly share code, notes, and snippets.

@nest-don
Last active October 6, 2019 02:34
Show Gist options
  • Save nest-don/096799eac1933b5ac61b229ec25d10c7 to your computer and use it in GitHub Desktop.
Save nest-don/096799eac1933b5ac61b229ec25d10c7 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<Shell>
<ShellItem Route="Bootstrap">
<ShellContent ContentTemplate="{DataTemplate local:BootPage}" />
</ShellItem>
<ShellItem Route="Onboarding">
<ShellContent ContentTemplate="{DataTemplate local:OnboardingPage}" />
</ShellItem>
<!-- Your Pages -->
<FlyoutItem Title="Home"
Route="Home">
<Tab Title="Shares">
<ShellContent ContentTemplate="{DataTemplate local:DashboardPage}" />
</Tab>
<Tab Title="About">
<ShellContent ContentTemplate="{DataTemplate local:AboutPage}" />
</Tab>
</FlyoutItem>
<MenuItem Text="Logout" Command="{Binding LogoutCommand}" />
</Shell>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment