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.
34 lines
1.1 KiB
34 lines
1.1 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<Shell
|
|
x:Class="Vues.AppShell"
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:local="clr-namespace:Vues"
|
|
Shell.FlyoutBehavior="Disabled"
|
|
Shell.FlyoutWidth="60">
|
|
<ShellContent
|
|
ContentTemplate="{DataTemplate local:Accueil}"
|
|
FlyoutIcon="home.png"
|
|
Route="Accueil" />
|
|
<ShellContent
|
|
ContentTemplate="{DataTemplate local:Connexion}"
|
|
FlyoutIcon="cadena.png"
|
|
Route="Connexion" />
|
|
<ShellContent
|
|
ContentTemplate="{DataTemplate local:Inscription}"
|
|
FlyoutIcon="cadena.png"
|
|
Route="Inscriiption" />
|
|
<ShellContent
|
|
ContentTemplate="{DataTemplate local:SearchMob}"
|
|
FlyoutIcon="cadena.png"
|
|
Route="SearchMob" />
|
|
<ShellContent
|
|
ContentTemplate="{DataTemplate local:Favoris}"
|
|
FlyoutIcon="star.png"
|
|
Route="Favoris" />
|
|
<ShellContent
|
|
ContentTemplate="{DataTemplate local:Collection}"
|
|
FlyoutIcon="star.png"
|
|
Route="Collection" />
|
|
</Shell>
|