|
|
<?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:local="clr-namespace:Views"
|
|
|
x:Class="Views.RecipeReviews"
|
|
|
Title="RecipeReviews">
|
|
|
|
|
|
<VerticalStackLayout>
|
|
|
<local:MiniHeader
|
|
|
TitleMini="Liste des avis de la recette n°5616548"
|
|
|
NeedReturn="True"
|
|
|
HeightRequest="100"/>
|
|
|
|
|
|
<VerticalStackLayout>
|
|
|
<ScrollView MaximumHeightRequest="500">
|
|
|
<VerticalStackLayout>
|
|
|
|
|
|
<local:UserReview>
|
|
|
<local:UserReview.Comment>
|
|
|
Recette facile, non prise de tête et agréable à réaliser avec ses grand-parents. Le résultat est délicieux, ma famille a adorée.
|
|
|
</local:UserReview.Comment>
|
|
|
</local:UserReview>
|
|
|
<local:UserReview>
|
|
|
<local:UserReview.Comment>
|
|
|
Très bonne recette à l’exeption près qu’il est compliqué d’offrir ces cookies à des enfants. En effet, ils ne sont pas très friant de fruit ou de légumes... Mais ils ont eu beaucoup de succès auprès de mes vieux !
|
|
|
</local:UserReview.Comment>
|
|
|
</local:UserReview>
|
|
|
<local:UserReview>
|
|
|
<local:UserReview.Comment>
|
|
|
Je suis plutôt vin blanc.
|
|
|
</local:UserReview.Comment>
|
|
|
</local:UserReview>
|
|
|
<local:UserReview>
|
|
|
<local:UserReview.Comment>
|
|
|
Très bonne recette à l’exeption près qu’il est compliqué d’offrir ces cookies à des enfants. En effet, ils ne sont pas très friant de fruit ou de légumes... Mais ils ont eu beaucoup de succès auprès de mes vieux !
|
|
|
Très bonne recette à l’exeption près qu’il est compliqué d’offrir ces cookies à des enfants. En effet, ils ne sont pas très friant de fruit ou de légumes... Mais ils ont eu beaucoup de succès auprès de mes vieux !
|
|
|
Très bonne recette à l’exeption près qu’il est compliqué d’offrir ces cookies à des enfants. En effet, ils ne sont pas très friant de fruit ou de légumes... Mais ils ont eu beaucoup de succès auprès de mes vieux !
|
|
|
Très bonne recette à l’exeption près qu’il est compliqué d’offrir ces cookies à des enfants. En effet, ils ne sont pas très friant de fruit ou de légumes... Mais ils ont eu beaucoup de succès auprès de mes vieux !
|
|
|
</local:UserReview.Comment>
|
|
|
</local:UserReview>
|
|
|
|
|
|
</VerticalStackLayout>
|
|
|
</ScrollView>
|
|
|
<Border>
|
|
|
<AbsoluteLayout>
|
|
|
|
|
|
<Grid AbsoluteLayout.LayoutBounds="0, 0.5" AbsoluteLayout.LayoutFlags="PositionProportional"
|
|
|
Margin="20"
|
|
|
ColumnDefinitions="50, 50, 50, 50"
|
|
|
RowDefinitions="50, 50">
|
|
|
|
|
|
<Image Source="person_default.png" Grid.Row="0"/>
|
|
|
<Label Text="Charles Jacob"
|
|
|
Grid.Column="1" Grid.ColumnSpan="2" Grid.Row="0"
|
|
|
HorizontalOptions="StartAndExpand" VerticalOptions="Center"
|
|
|
HorizontalTextAlignment="Center"/>
|
|
|
|
|
|
<Image Style="{StaticResource Key=starCommentImage}" Grid.Row="1" Grid.Column="0"/>
|
|
|
<Image Style="{StaticResource Key=starCommentImage}" Grid.Row="1" Grid.Column="1"/>
|
|
|
<Image Style="{StaticResource Key=starCommentImage}" Grid.Row="1" Grid.Column="2"/>
|
|
|
<Image Style="{StaticResource Key=starCommentImage}" Grid.Row="1" Grid.Column="3"/>
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
<Editor AbsoluteLayout.LayoutBounds="0.5, 0.5, 700, 150" AbsoluteLayout.LayoutFlags="PositionProportional"
|
|
|
Margin="20"
|
|
|
Placeholder="Laisser un commentaire..." PlaceholderColor="Black" FontSize="16"
|
|
|
BackgroundColor="{StaticResource Gray100}" Keyboard="Text"
|
|
|
IsSpellCheckEnabled="True"
|
|
|
IsTextPredictionEnabled="True"/>
|
|
|
|
|
|
<Button AbsoluteLayout.LayoutBounds="1, 6, 270, 150" AbsoluteLayout.LayoutFlags="PositionProportional"
|
|
|
Margin="50"
|
|
|
Text="Valider" VerticalOptions="Center" TextColor="Black"
|
|
|
BackgroundColor="LightGreen"/>
|
|
|
|
|
|
</AbsoluteLayout>
|
|
|
</Border>
|
|
|
</VerticalStackLayout>
|
|
|
</VerticalStackLayout>
|
|
|
|
|
|
</ContentPage>
|