2021-11-07 19:42:59 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<Shell xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
xmlns:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
|
|
|
|
xmlns:mappage="clr-namespace:TINK.View.Map"
|
|
|
|
xmlns:findbike="clr-namespace:TINK.View.FindBike"
|
|
|
|
xmlns:mybikes="clr-namespace:TINK.View.MyBikes"
|
|
|
|
xmlns:account="clr-namespace:TINK.View.Account"
|
|
|
|
xmlns:login="clr-namespace:TINK.View.Login"
|
|
|
|
xmlns:settings="clr-namespace:TINK.View.Settings"
|
|
|
|
xmlns:contact="clr-namespace:TINK.View.Contact"
|
|
|
|
xmlns:info="clr-namespace:TINK.View.Info"
|
|
|
|
xmlns:header="clr-namespace:TINK.View.RootShell"
|
|
|
|
Title="Shell"
|
|
|
|
x:Class="TINK.View.RootShell.AppShell">
|
|
|
|
<Shell.FlyoutHeader>
|
|
|
|
<header:FlyoutHeader/>
|
|
|
|
</Shell.FlyoutHeader>
|
2022-08-30 15:42:25 +02:00
|
|
|
|
2021-11-07 19:42:59 +01:00
|
|
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
|
|
|
<ShellContent
|
|
|
|
Title="{x:Static resources:AppResources.MarkingMapPage}"
|
2022-08-30 15:42:25 +02:00
|
|
|
Icon="menu_bikelocations.png"
|
2021-11-07 19:42:59 +01:00
|
|
|
Route="MapPage"
|
2022-08-30 15:42:25 +02:00
|
|
|
ContentTemplate="{DataTemplate mappage:MapPage}"/>
|
2021-11-07 19:42:59 +01:00
|
|
|
</FlyoutItem>
|
|
|
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
|
|
|
<ShellContent
|
|
|
|
Title="{x:Static resources:AppResources.MarkingFindBike}"
|
2022-08-30 15:42:25 +02:00
|
|
|
Icon="menu_looking.png"
|
2021-11-07 19:42:59 +01:00
|
|
|
IsVisible="{Binding IsFindBikePageVisible}"
|
|
|
|
ContentTemplate="{DataTemplate findbike:FindBikePage}">
|
|
|
|
</ShellContent>
|
|
|
|
</FlyoutItem>
|
|
|
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
|
|
|
<ShellContent
|
|
|
|
Title="{x:Static resources:AppResources.MarkingMyBikes}"
|
2022-08-30 15:42:25 +02:00
|
|
|
Icon="menu_mybikes.png"
|
2021-11-07 19:42:59 +01:00
|
|
|
IsVisible="{Binding IsMyBikesPageVisible}"
|
|
|
|
ContentTemplate="{DataTemplate mybikes:MyBikesPage}">
|
|
|
|
</ShellContent>
|
|
|
|
</FlyoutItem>
|
|
|
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
|
|
|
<ShellContent
|
|
|
|
Title="{x:Static resources:AppResources.MarkingAccount}"
|
2022-08-30 15:42:25 +02:00
|
|
|
Icon="menu_account.png"
|
2021-11-07 19:42:59 +01:00
|
|
|
IsVisible="{Binding IsAccountPageVisible}"
|
|
|
|
ContentTemplate="{DataTemplate account:AccountPage}">
|
|
|
|
</ShellContent>
|
|
|
|
</FlyoutItem>
|
|
|
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
|
|
|
<ShellContent
|
|
|
|
Title="{x:Static resources:AppResources.MarkingLogin}"
|
2022-08-30 15:42:25 +02:00
|
|
|
Icon="menu_account.png"
|
2021-11-07 19:42:59 +01:00
|
|
|
Route="LoginPage"
|
|
|
|
IsVisible="{Binding IsLoginPageVisible}"
|
|
|
|
ContentTemplate="{DataTemplate login:LoginPage}">
|
|
|
|
</ShellContent>
|
|
|
|
</FlyoutItem>
|
|
|
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
|
|
|
<ShellContent
|
|
|
|
Title="{x:Static resources:AppResources.MarkingSettings}"
|
2022-08-30 15:42:25 +02:00
|
|
|
Icon="menu_settings.png"
|
2021-11-07 19:42:59 +01:00
|
|
|
ContentTemplate="{DataTemplate settings:SettingsPage}">
|
|
|
|
</ShellContent>
|
|
|
|
</FlyoutItem>
|
|
|
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
|
|
|
<ShellContent
|
|
|
|
Title="{x:Static resources:AppResources.MarkingFeesAndBikes}"
|
2022-08-30 15:42:25 +02:00
|
|
|
Icon="menu_using.png"
|
2021-11-07 19:42:59 +01:00
|
|
|
ContentTemplate="{DataTemplate contact:FeesAndBikesPage}">
|
|
|
|
</ShellContent>
|
|
|
|
</FlyoutItem>
|
|
|
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
|
|
|
<ShellContent
|
|
|
|
Title="{x:Static resources:AppResources.MarkingFeedbackAndContact}"
|
2022-08-30 15:42:25 +02:00
|
|
|
Icon="menu_contact.png"
|
2022-04-10 17:38:34 +02:00
|
|
|
Route="ContactPage"
|
2021-11-07 19:42:59 +01:00
|
|
|
ContentTemplate="{DataTemplate contact:ContactPage}">
|
|
|
|
</ShellContent>
|
|
|
|
</FlyoutItem>
|
|
|
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
|
|
|
<ShellContent
|
|
|
|
Title="{Binding TabbedPageIngoTitle}"
|
2022-08-30 15:42:25 +02:00
|
|
|
Icon="menu_info.png"
|
2022-01-22 18:28:01 +01:00
|
|
|
ContentTemplate="{DataTemplate info:InfoPage}">
|
2021-11-07 19:42:59 +01:00
|
|
|
</ShellContent>
|
|
|
|
</FlyoutItem>
|
2022-04-10 17:38:34 +02:00
|
|
|
<Shell.FlyoutFooter>
|
|
|
|
<header:FlyoutFooter/>
|
|
|
|
</Shell.FlyoutFooter>
|
2021-11-07 19:42:59 +01:00
|
|
|
</Shell>
|