|
|
@ -4,16 +4,60 @@
|
|
|
|
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:local="clr-namespace:Vue"
|
|
|
|
xmlns:local="clr-namespace:Vue"
|
|
|
|
Shell.FlyoutBehavior="Disabled">
|
|
|
|
FlyoutBackgroundColor="DarkGray"
|
|
|
|
|
|
|
|
Shell.FlyoutBehavior="Flyout">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Shell.ItemTemplate>
|
|
|
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
|
|
|
<Grid ColumnDefinitions="20, *" Padding="10">
|
|
|
|
|
|
|
|
<Image Source="{Binding Icon}"/>
|
|
|
|
|
|
|
|
<Label Grid.Column="1" Text="{Binding Title}"
|
|
|
|
|
|
|
|
TextColor="White" FontAttributes="Bold"
|
|
|
|
|
|
|
|
Padding="20, 0"/>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
|
|
|
</Shell.ItemTemplate>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Shell.FlyoutHeader>
|
|
|
|
|
|
|
|
<VerticalStackLayout>
|
|
|
|
|
|
|
|
<ImageButton Source="person_default.png"
|
|
|
|
|
|
|
|
BackgroundColor="{StaticResource Secondary}"
|
|
|
|
|
|
|
|
WidthRequest="100" HeightRequest="100"
|
|
|
|
|
|
|
|
CornerRadius="50" Margin="0, 20, 0, 0"
|
|
|
|
|
|
|
|
IsEnabled="False"/>
|
|
|
|
|
|
|
|
<Button Text="Connection" ImageSource="login_icon.png"
|
|
|
|
|
|
|
|
MaximumHeightRequest="20" Margin="15, 15, 15, 60"/>
|
|
|
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
|
|
|
</Shell.FlyoutHeader>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FlyoutItem Title="Suggestions" Icon="assistant_icon.png">
|
|
|
|
<ShellContent
|
|
|
|
<ShellContent
|
|
|
|
Title="Home"
|
|
|
|
|
|
|
|
ContentTemplate="{DataTemplate local:Home}"
|
|
|
|
ContentTemplate="{DataTemplate local:Home}"
|
|
|
|
Route="MainPage" />
|
|
|
|
Route="Home"/>
|
|
|
|
|
|
|
|
</FlyoutItem>
|
|
|
|
|
|
|
|
<FlyoutItem Title="Entrées" Icon="flatware_icon.png">
|
|
|
|
|
|
|
|
<ShellContent
|
|
|
|
|
|
|
|
ContentTemplate="{DataTemplate local:Home}"
|
|
|
|
|
|
|
|
Route="Home"/>
|
|
|
|
|
|
|
|
</FlyoutItem>
|
|
|
|
|
|
|
|
<FlyoutItem Title="Plats" Icon="room_service_icon.png">
|
|
|
|
<ShellContent
|
|
|
|
<ShellContent
|
|
|
|
Title="Home"
|
|
|
|
|
|
|
|
ContentTemplate="{DataTemplate local:Home}"
|
|
|
|
ContentTemplate="{DataTemplate local:Home}"
|
|
|
|
Route="MainPage" />
|
|
|
|
Route="Home"/>
|
|
|
|
|
|
|
|
</FlyoutItem>
|
|
|
|
|
|
|
|
<FlyoutItem Title="Desserts" Icon="coffee_icon.png">
|
|
|
|
|
|
|
|
<ShellContent
|
|
|
|
|
|
|
|
ContentTemplate="{DataTemplate local:Home}"
|
|
|
|
|
|
|
|
Route="Home"/>
|
|
|
|
|
|
|
|
</FlyoutItem>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Shell.FlyoutFooter>
|
|
|
|
|
|
|
|
<VerticalStackLayout>
|
|
|
|
|
|
|
|
<Button Text="Déconnexion" ImageSource="logout_icon.png"
|
|
|
|
|
|
|
|
MaximumHeightRequest="20" Margin="15"
|
|
|
|
|
|
|
|
IsVisible="False"/>
|
|
|
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
|
|
|
</Shell.FlyoutFooter>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Shell>
|
|
|
|
</Shell>
|
|
|
|