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.
67 lines
3.2 KiB
67 lines
3.2 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
|
|
xmlns:local="clr-namespace:Views"
|
|
x:Class="Views.Home">
|
|
|
|
<local:ContainerBase
|
|
IsNotConnected="True">
|
|
|
|
<!-- Flyout -->
|
|
<local:ContainerBase.MyFlyoutContent>
|
|
<VerticalStackLayout Grid.Row="1">
|
|
<!-- Research -->
|
|
<Button Text="Recherche" ImageSource="search_icon.png"
|
|
MaximumHeightRequest="20"
|
|
Style="{StaticResource button1}"/>
|
|
<SearchBar Placeholder="Mots-clés (ex.: rapide, fromage)" FontAttributes="Italic" TextColor="Black"
|
|
BackgroundColor="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Gray300}}"
|
|
Margin="15, 10, 15, 40"/>
|
|
|
|
<!-- Direct research -->
|
|
<Button Text="Entrées" ImageSource="flatware_icon.png"
|
|
Style="{StaticResource button1}"/>
|
|
<Button Text="Plats" ImageSource="room_service_icon.png"
|
|
Style="{StaticResource button1}"/>
|
|
<Button Text="Desserts" ImageSource="coffee_icon.png"
|
|
Style="{StaticResource button1}"/>
|
|
</VerticalStackLayout>
|
|
</local:ContainerBase.MyFlyoutContent>
|
|
|
|
<!-- Master -->
|
|
<local:ContainerBase.MyContent>
|
|
<ScrollView>
|
|
<StackLayout>
|
|
<Label Text="Suggestions" TextColor="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource Gray100}}"
|
|
FontSize="24" Padding="15"/>
|
|
|
|
<FlexLayout
|
|
Margin="0, 15"
|
|
Wrap="Wrap"
|
|
JustifyContent="Start"
|
|
AlignItems="Center"
|
|
AlignContent="SpaceEvenly"
|
|
HorizontalOptions="Center">
|
|
|
|
<local:RecipeCase CaseImageSource="room_service_icon.png"/>
|
|
<local:RecipeCase CaseImageSource="room_service_icon.png"/>
|
|
<local:RecipeCase CaseImageSource="room_service_icon.png"/>
|
|
<local:RecipeCase CaseImageSource="room_service_icon.png"/>
|
|
<local:RecipeCase CaseImageSource="room_service_icon.png"/>
|
|
<local:RecipeCase CaseImageSource="room_service_icon.png"/>
|
|
<local:RecipeCase CaseImageSource="room_service_icon.png"/>
|
|
<local:RecipeCase CaseImageSource="room_service_icon.png"/>
|
|
<local:RecipeCase CaseImageSource="room_service_icon.png"/>
|
|
<local:RecipeCase CaseImageSource="room_service_icon.png"/>
|
|
<local:RecipeCase CaseImageSource="room_service_icon.png"/>
|
|
|
|
</FlexLayout>
|
|
</StackLayout>
|
|
</ScrollView>
|
|
</local:ContainerBase.MyContent>
|
|
|
|
</local:ContainerBase>
|
|
|
|
</ContentPage>
|