You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.4 KiB
69 lines
2.4 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<Shell
|
|
x:Class="Ohara.AppShell"
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:local="clr-namespace:Ohara"
|
|
Shell.FlyoutBehavior="Locked"
|
|
Shell.NavBarIsVisible="False"
|
|
Shell.FlyoutWidth="300"
|
|
>
|
|
|
|
<Shell.TitleView>
|
|
<Label/>
|
|
</Shell.TitleView>
|
|
|
|
<Shell.FlyoutHeader >
|
|
<Grid HeightRequest="200" BackgroundColor="Black" Margin="0,0,0,20">
|
|
|
|
<Image Source="ohara2.png" Aspect="Fill" Opacity="0.8" />
|
|
<Label Text="Ohara" FontSize="33" TextColor="White" HorizontalOptions="Center" VerticalOptions="Center" FontAttributes="Bold"/>
|
|
<Line X1="0" Y1="0" X2="3000" Y2="0" StrokeThickness="5" Stroke="#72a3b3" VerticalOptions="End" />
|
|
</Grid>
|
|
|
|
</Shell.FlyoutHeader>
|
|
|
|
<FlyoutItem Title="Accueil" >
|
|
<ShellContent ContentTemplate="{DataTemplate local:MainPage}" />
|
|
</FlyoutItem>
|
|
<FlyoutItem Title="Favoris">
|
|
<ShellContent ContentTemplate="{DataTemplate local:PageFavoris}" />
|
|
</FlyoutItem>
|
|
<FlyoutItem Title="Carte">
|
|
<ShellContent ContentTemplate="{DataTemplate local:PageCarte}" />
|
|
</FlyoutItem>
|
|
<FlyoutItem Title="Personnages">
|
|
<ShellContent ContentTemplate="{DataTemplate local:PagePersonnage}" />
|
|
</FlyoutItem>
|
|
<FlyoutItem Title="Bateaux">
|
|
<ShellContent ContentTemplate="{DataTemplate local:PageBateau}" />
|
|
</FlyoutItem>
|
|
<FlyoutItem Title="Îles" >
|
|
<ShellContent ContentTemplate="{DataTemplate local:PageIle}" />
|
|
</FlyoutItem>
|
|
<FlyoutItem Title="Fruits Du Démon">
|
|
<ShellContent ContentTemplate="{DataTemplate local:PageFDD}" />
|
|
</FlyoutItem>
|
|
<FlyoutItem Title="Equipages">
|
|
<ShellContent ContentTemplate="{DataTemplate local:PageEquipage}" />
|
|
</FlyoutItem>
|
|
<FlyoutItem Title="Bestiaire">
|
|
<ShellContent ContentTemplate="{DataTemplate local:PageBestiaire}" />
|
|
</FlyoutItem>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Shell.FlyoutFooter>
|
|
<StackLayout>
|
|
<Line X1="0" Y1="0" X2="3000" Y2="0" StrokeThickness="4" Stroke="#72a3b3"/>
|
|
<Label Text="REY Guillaume et BRUGIÈRE Yoan" HorizontalOptions="Center" Margin="10" TextColor="#72a3b3"/>
|
|
</StackLayout>
|
|
|
|
</Shell.FlyoutFooter>
|
|
|
|
</Shell>
|