|
|
|
@ -15,11 +15,9 @@
|
|
|
|
|
<local:ContainerBase.MyFlyoutContent>
|
|
|
|
|
<VerticalStackLayout Grid.Row="1">
|
|
|
|
|
<!-- Research -->
|
|
|
|
|
<Button
|
|
|
|
|
Text="Recherche"
|
|
|
|
|
ImageSource="search_icon.png"
|
|
|
|
|
MaximumHeightRequest="20"
|
|
|
|
|
Style="{StaticResource button1}"/>
|
|
|
|
|
<Label
|
|
|
|
|
Text="Recherche de recettes :" FontSize="14"
|
|
|
|
|
Margin="20, 10, 15, 0"/>
|
|
|
|
|
<SearchBar
|
|
|
|
|
Placeholder="Mots-clés (ex.: rapide, fromage)"
|
|
|
|
|
FontAttributes="Italic" TextColor="Black"
|
|
|
|
@ -28,6 +26,11 @@
|
|
|
|
|
SearchButtonPressed="SearchBar_SearchButtonPressed"/>
|
|
|
|
|
|
|
|
|
|
<!-- Direct research -->
|
|
|
|
|
<Button
|
|
|
|
|
Text="Toutes les recettes"
|
|
|
|
|
ImageSource="home_icon.png"
|
|
|
|
|
Style="{StaticResource button1}"
|
|
|
|
|
Clicked="AllRecipes_Clicked"/>
|
|
|
|
|
<Button
|
|
|
|
|
Text="Entrées"
|
|
|
|
|
ImageSource="flatware_icon.png"
|
|
|
|
@ -36,11 +39,13 @@
|
|
|
|
|
<Button
|
|
|
|
|
Text="Plats"
|
|
|
|
|
ImageSource="room_service_icon.png"
|
|
|
|
|
Style="{StaticResource button1}"/>
|
|
|
|
|
Style="{StaticResource button1}"
|
|
|
|
|
Clicked="Plats_Clicked"/>
|
|
|
|
|
<Button
|
|
|
|
|
Text="Desserts"
|
|
|
|
|
ImageSource="coffee_icon.png"
|
|
|
|
|
Style="{StaticResource button1}"/>
|
|
|
|
|
Style="{StaticResource button1}"
|
|
|
|
|
Clicked="Desserts_Clicked"/>
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|
</local:ContainerBase.MyFlyoutContent>
|
|
|
|
|
|
|
|
|
|