Last active
October 6, 2019 02:34
-
-
Save nest-don/096799eac1933b5ac61b229ec25d10c7 to your computer and use it in GitHub Desktop.
This file contains 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
<?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