mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
110 lines
5.2 KiB
Text
110 lines
5.2 KiB
Text
|
<?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"
|
||
|
BackgroundColor="{DynamicResource Key=primary-back-title-color}"
|
||
|
Title="Shell"
|
||
|
x:Class="TINK.View.RootShell.AppShell">
|
||
|
<Shell.FlyoutHeader>
|
||
|
<header:FlyoutHeader/>
|
||
|
</Shell.FlyoutHeader>
|
||
|
|
||
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
||
|
<ShellContent
|
||
|
Title="{x:Static resources:AppResources.MarkingMapPage}"
|
||
|
Route="MapPage"
|
||
|
ContentTemplate="{DataTemplate mappage:MapPage}">
|
||
|
<ShellContent.FlyoutIcon>
|
||
|
<FontImageSource Glyph="{StaticResource IconMap}" Color="Black" FontFamily="FA-S" />
|
||
|
</ShellContent.FlyoutIcon>
|
||
|
</ShellContent>
|
||
|
</FlyoutItem>
|
||
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
||
|
<ShellContent
|
||
|
Title="{x:Static resources:AppResources.MarkingFindBike}"
|
||
|
IsVisible="{Binding IsFindBikePageVisible}"
|
||
|
ContentTemplate="{DataTemplate findbike:FindBikePage}">
|
||
|
<ShellContent.FlyoutIcon>
|
||
|
<FontImageSource Glyph="{StaticResource IconFindBike}" Color="Black" FontFamily="FA-S" />
|
||
|
</ShellContent.FlyoutIcon>
|
||
|
</ShellContent>
|
||
|
</FlyoutItem>
|
||
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
||
|
<ShellContent
|
||
|
Title="{x:Static resources:AppResources.MarkingMyBikes}"
|
||
|
IsVisible="{Binding IsMyBikesPageVisible}"
|
||
|
ContentTemplate="{DataTemplate mybikes:MyBikesPage}">
|
||
|
<ShellContent.FlyoutIcon>
|
||
|
<FontImageSource Glyph="{StaticResource IconMyBikes}" Color="Black" FontFamily="FA-S" />
|
||
|
</ShellContent.FlyoutIcon>
|
||
|
</ShellContent>
|
||
|
</FlyoutItem>
|
||
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
||
|
<ShellContent
|
||
|
Title="{x:Static resources:AppResources.MarkingAccount}"
|
||
|
IsVisible="{Binding IsAccountPageVisible}"
|
||
|
ContentTemplate="{DataTemplate account:AccountPage}">
|
||
|
<ShellContent.FlyoutIcon>
|
||
|
<FontImageSource Glyph="{StaticResource IconAccount}" Color="Black" FontFamily="FA-S" />
|
||
|
</ShellContent.FlyoutIcon>
|
||
|
</ShellContent>
|
||
|
</FlyoutItem>
|
||
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
||
|
<ShellContent
|
||
|
Title="{x:Static resources:AppResources.MarkingLogin}"
|
||
|
Route="LoginPage"
|
||
|
IsVisible="{Binding IsLoginPageVisible}"
|
||
|
ContentTemplate="{DataTemplate login:LoginPage}">
|
||
|
<ShellContent.FlyoutIcon>
|
||
|
<FontImageSource Glyph="{StaticResource IconLogin}" Color="Black" FontFamily="FA-S" />
|
||
|
</ShellContent.FlyoutIcon>
|
||
|
</ShellContent>
|
||
|
</FlyoutItem>
|
||
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
||
|
<ShellContent
|
||
|
Title="{x:Static resources:AppResources.MarkingSettings}"
|
||
|
IsVisible="{Binding IsSettingsPageVisible}"
|
||
|
ContentTemplate="{DataTemplate settings:SettingsPage}">
|
||
|
<ShellContent.FlyoutIcon>
|
||
|
<FontImageSource Glyph="{StaticResource IconSettings}" Color="Black" FontFamily="FA-S" />
|
||
|
</ShellContent.FlyoutIcon>
|
||
|
</ShellContent>
|
||
|
</FlyoutItem>
|
||
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
||
|
<ShellContent
|
||
|
Title="{x:Static resources:AppResources.MarkingFeesAndBikes}"
|
||
|
ContentTemplate="{DataTemplate contact:FeesAndBikesPage}">
|
||
|
<ShellContent.FlyoutIcon>
|
||
|
<FontImageSource Glyph="{StaticResource IconFeesAndBikes}" Color="Black" FontFamily="FA-S" />
|
||
|
</ShellContent.FlyoutIcon>
|
||
|
</ShellContent>
|
||
|
</FlyoutItem>
|
||
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
||
|
<ShellContent
|
||
|
Title="{x:Static resources:AppResources.MarkingFeedbackAndContact}"
|
||
|
ContentTemplate="{DataTemplate contact:ContactPage}">
|
||
|
<ShellContent.FlyoutIcon>
|
||
|
<FontImageSource Glyph="{StaticResource IconContact}" Color="Black" FontFamily="FA-S" />
|
||
|
</ShellContent.FlyoutIcon>
|
||
|
</ShellContent>
|
||
|
</FlyoutItem>
|
||
|
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
|
||
|
<ShellContent
|
||
|
Title="{Binding TabbedPageIngoTitle}"
|
||
|
ContentTemplate="{DataTemplate info:TabbedPageInfo}">
|
||
|
<ShellContent.FlyoutIcon>
|
||
|
<FontImageSource Glyph="{StaticResource IconInfo}" Color="Black" FontFamily="FA-S" />
|
||
|
</ShellContent.FlyoutIcon>
|
||
|
</ShellContent>
|
||
|
</FlyoutItem>
|
||
|
</Shell>
|