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.
34 lines
936 B
34 lines
936 B
<?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"
|
|
x:Class="Views.ViewRecette"
|
|
xmlns:local="clr-namespace:Views"
|
|
Title="ViewRecette"
|
|
x:Name="nrecipe">
|
|
<VerticalStackLayout>
|
|
<local:MiniHeader
|
|
TitleMini="Cookies aux Pépites de chocolat"
|
|
NeedReturn="True"
|
|
HeightRequest="100"/>
|
|
<Image
|
|
BackgroundColor="Green"
|
|
HeightRequest="150"/>
|
|
<Grid ColumnDefinitions="200,*">
|
|
<Label Margin="10,50,0,0"
|
|
Text="Ingrédients :"/>
|
|
<Label Margin="10,60,0,0">
|
|
<Label.Text>
|
|
|
|
6 pommes
|
|
6poires
|
|
</Label.Text>
|
|
</Label>
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
</VerticalStackLayout>
|
|
</ContentPage> |