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.
43 lines
1.6 KiB
43 lines
1.6 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.Background="#72a3b3"
|
|
>
|
|
|
|
<Shell.TitleView>
|
|
<Label/>
|
|
</Shell.TitleView>
|
|
|
|
|
|
|
|
<Shell.FlyoutHeader>
|
|
<StackLayout>
|
|
<Label Text="Ohara" FontSize="33" HorizontalOptions="Center"/>
|
|
<Image Source="ohara2.png" HeightRequest="300" HorizontalOptions="Center" >
|
|
<Image.Clip>
|
|
<EllipseGeometry Center="150,90" RadiusX="80" RadiusY="80"/>
|
|
</Image.Clip>
|
|
</Image>
|
|
</StackLayout>
|
|
|
|
</Shell.FlyoutHeader>
|
|
|
|
<ShellContent Title="Acceuil" ContentTemplate="{DataTemplate local:MainPage}" />
|
|
<ShellContent Title="Favoris" ContentTemplate="{DataTemplate local:PageFavoris}" />
|
|
<ShellContent Title="Carte" ContentTemplate="{DataTemplate local:PageCarte}" />
|
|
<ShellContent Title="Personnages" ContentTemplate="{DataTemplate local:PagePersonnage}" />
|
|
<ShellContent Title="Bateaux" ContentTemplate="{DataTemplate local:PageBateau}" />
|
|
<ShellContent Title="Îles" ContentTemplate="{DataTemplate local:PageIle}" />
|
|
<ShellContent Title="Fruits Du Démon" ContentTemplate="{DataTemplate local:PageFDD}" />
|
|
<ShellContent Title="Equipages" ContentTemplate="{DataTemplate local:PageEquipage}" />
|
|
<ShellContent Title="Bestiaire" ContentTemplate="{DataTemplate local:PageBestiaire}" />
|
|
|
|
|
|
|
|
</Shell>
|