|
|
@ -4,38 +4,39 @@
|
|
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
xmlns:views="clr-namespace:GameAtlas.Views"
|
|
|
|
xmlns:views="clr-namespace:GameAtlas.Views"
|
|
|
|
Shell.FlyoutBehavior="Disabled">
|
|
|
|
Shell.FlyoutBehavior="Disabled"
|
|
|
|
|
|
|
|
Shell.NavBarIsVisible="False">
|
|
|
|
|
|
|
|
|
|
|
|
<Shell.Resources>
|
|
|
|
<Shell.Resources>
|
|
|
|
<ResourceDictionary>
|
|
|
|
<ResourceDictionary>
|
|
|
|
<Style x:Key="BaseStyle" TargetType="Element">
|
|
|
|
<Style x:Key="BaseStyle" TargetType="Element">
|
|
|
|
<Setter Property="Shell.ForegroundColor" Value="{StaticResource Gray1000}" />
|
|
|
|
<Setter Property="Shell.ForegroundColor" Value="{StaticResource Gray1000}" />
|
|
|
|
<Setter Property="Shell.UnselectedColor" Value="{StaticResource Gray300}" />
|
|
|
|
<Setter Property="Shell.UnselectedColor" Value="{StaticResource Gray300}" />
|
|
|
|
<Setter Property="Shell.TabBarBackgroundColor" Value="{StaticResource Gray1000}" />
|
|
|
|
<Setter Property="Shell.TabBarBackgroundColor" Value="{StaticResource Gray1000}" />
|
|
|
|
<Setter Property="Shell.TabBarForegroundColor" Value="{StaticResource White}"/>
|
|
|
|
<Setter Property="Shell.TabBarForegroundColor" Value="{StaticResource White}"/>
|
|
|
|
<Setter Property="Shell.TabBarUnselectedColor" Value="{StaticResource Gray300}"/>
|
|
|
|
<Setter Property="Shell.TabBarUnselectedColor" Value="{StaticResource Gray300}"/>
|
|
|
|
</Style>
|
|
|
|
</Style>
|
|
|
|
<Style TargetType="TabBar" BasedOn="{StaticResource BaseStyle}" />
|
|
|
|
<Style TargetType="TabBar" BasedOn="{StaticResource BaseStyle}" />
|
|
|
|
<Style TargetType="FlyoutItem" BasedOn="{StaticResource BaseStyle}" />
|
|
|
|
<Style TargetType="FlyoutItem" BasedOn="{StaticResource BaseStyle}" />
|
|
|
|
</ResourceDictionary>
|
|
|
|
</ResourceDictionary>
|
|
|
|
</Shell.Resources>
|
|
|
|
</Shell.Resources>
|
|
|
|
|
|
|
|
|
|
|
|
<TabBar>
|
|
|
|
<TabBar>
|
|
|
|
<ShellContent
|
|
|
|
<ShellContent
|
|
|
|
Title="Accueil"
|
|
|
|
Title="Accueil"
|
|
|
|
Icon="home"
|
|
|
|
Icon="home"
|
|
|
|
ContentTemplate="{DataTemplate views:PageAcceuil}"
|
|
|
|
ContentTemplate="{DataTemplate views:PageAcceuil}"
|
|
|
|
Route="PageAccueil" />
|
|
|
|
Route="PageAccueil" />
|
|
|
|
<ShellContent
|
|
|
|
<ShellContent
|
|
|
|
Title="Parcourir"
|
|
|
|
Title="Parcourir"
|
|
|
|
Icon="console"
|
|
|
|
Icon="console"
|
|
|
|
ContentTemplate="{DataTemplate views:PageParcourir}"
|
|
|
|
ContentTemplate="{DataTemplate views:PageParcourir}"
|
|
|
|
Route="PageParcourir" />
|
|
|
|
Route="PageParcourir" />
|
|
|
|
<ShellContent
|
|
|
|
<ShellContent
|
|
|
|
Title="Profil"
|
|
|
|
Title="Profil"
|
|
|
|
Icon="account"
|
|
|
|
Icon="account"
|
|
|
|
ContentTemplate="{DataTemplate views:PageProfil}"
|
|
|
|
ContentTemplate="{DataTemplate views:PageProfil}"
|
|
|
|
Route="PageProfil" />
|
|
|
|
Route="PageProfil" />
|
|
|
|
</TabBar>
|
|
|
|
</TabBar>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|