parent
4173709187
commit
078130d768
@ -1,63 +1,63 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
<ContentPage 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:MangaMap"
|
xmlns:local="clr-namespace:MangaMap"
|
||||||
x:Class="MangaMap.Views.ficheAnime"
|
x:Class="MangaMap.Views.ficheAnime"
|
||||||
Title="ficheAnime"
|
Title="ficheAnime"
|
||||||
BackgroundColor="{StaticResource Secondary}">
|
BackgroundColor="{StaticResource Secondary}">
|
||||||
|
|
||||||
<Grid RowDefinitions="40, *">
|
<Grid RowDefinitions="40, *">
|
||||||
<local:NewContent1 HeightRequest="40" VerticalOptions="Start" Padding="10, 0"/>
|
<local:NewContent1 HeightRequest="40" VerticalOptions="Start" Padding="10, 0"/>
|
||||||
|
|
||||||
<VerticalStackLayout Grid.Row="1">
|
<VerticalStackLayout Grid.Row="1">
|
||||||
|
|
||||||
<HorizontalStackLayout>
|
<HorizontalStackLayout>
|
||||||
<Rectangle
|
<Rectangle
|
||||||
WidthRequest="150"
|
WidthRequest="150"
|
||||||
HeightRequest="150"
|
HeightRequest="150"
|
||||||
Fill="Red"
|
Fill="Red"
|
||||||
HorizontalOptions="Start"
|
HorizontalOptions="Start"
|
||||||
Margin="50"/>
|
Margin="50"/>
|
||||||
|
|
||||||
<Label Text="Titre" FontSize="Header" VerticalOptions="Center"/>
|
<Label Text="Titre" FontSize="Header" VerticalOptions="Center"/>
|
||||||
</HorizontalStackLayout>
|
</HorizontalStackLayout>
|
||||||
|
|
||||||
<Grid>
|
<Grid>
|
||||||
<Label Text="test"/>
|
<Label Text="test"/>
|
||||||
<Label Text="test"/>
|
<Label Text="test"/>
|
||||||
<Label Text="test" BackgroundColor="{StaticResource Primary}"/>
|
<Label Text="test" BackgroundColor="{StaticResource Primary}"/>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<HorizontalStackLayout>
|
<HorizontalStackLayout>
|
||||||
<Ellipse Fill="Gold" WidthRequest="50" HeightRequest="50" Margin="10"/>
|
<Ellipse Fill="Gold" WidthRequest="50" HeightRequest="50" Margin="10"/>
|
||||||
<Ellipse Fill="Gold" WidthRequest="50" HeightRequest="50" Margin="10"/>
|
<Ellipse Fill="Gold" WidthRequest="50" HeightRequest="50" Margin="10"/>
|
||||||
<Ellipse Fill="Gold" WidthRequest="50" HeightRequest="50" Margin="10"/>
|
<Ellipse Fill="Gold" WidthRequest="50" HeightRequest="50" Margin="10"/>
|
||||||
<Ellipse Fill="Gold" WidthRequest="50" HeightRequest="50" Margin="10"/>
|
<Ellipse Fill="Gold" WidthRequest="50" HeightRequest="50" Margin="10"/>
|
||||||
<Ellipse Fill="Gold" WidthRequest="50" HeightRequest="50" Margin="10"/>
|
<Ellipse Fill="Gold" WidthRequest="50" HeightRequest="50" Margin="10"/>
|
||||||
|
|
||||||
<Button Text="Ajouter à la liste"
|
<Button Text="Ajouter à la liste"
|
||||||
TextColor="#FFFFFF"
|
TextColor="#FFFFFF"
|
||||||
HorizontalOptions="Start"
|
HorizontalOptions="Start"
|
||||||
Margin="20"
|
Margin="20"
|
||||||
BackgroundColor="{StaticResource Primary}"/>
|
BackgroundColor="{StaticResource Primary}"/>
|
||||||
</HorizontalStackLayout>
|
</HorizontalStackLayout>
|
||||||
|
|
||||||
<Label
|
<Label
|
||||||
Text="Je suis une description. Je suis une description. Je suis une description. Je suis une description. Je suis une description. Je suis une description. Je suis une description. Je suis une description. Je suis une description. Je suis une description."
|
Text="Je suis une description. Je suis une description. Je suis une description. Je suis une description. Je suis une description. Je suis une description. Je suis une description. Je suis une description. Je suis une description. Je suis une description."
|
||||||
Margin="20"/>
|
Margin="20"/>
|
||||||
|
|
||||||
<Label Text="{Binding AnimeModel.Nom}" FontSize="Header" VerticalOptions="Center" TextColor="{StaticResource Primary}"/>
|
<Label Text="{Binding AnimeModel.Nom}" FontSize="Header" VerticalOptions="Center" TextColor="{StaticResource Primary}"/>
|
||||||
<Label Text="{Binding AnimeModel.Description}" Margin="20"/>
|
<Label Text="{Binding AnimeModel.Description}" Margin="20" TextColor="Wheat"/>
|
||||||
|
|
||||||
<Entry Text="{Binding AnimeModel.Nom}" Placeholder="Entrez le nom"/>
|
<Entry Text="{Binding AnimeModel.Nom}" Placeholder="Entrez le nom"/>
|
||||||
<Entry Text="{Binding AnimeModel.Description}" Placeholder="Entrez la description"/>
|
<Entry Text="{Binding AnimeModel.Description}" Placeholder="Entrez la description"/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</VerticalStackLayout>
|
</VerticalStackLayout>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
</ContentPage>
|
</ContentPage>
|
Loading…
Reference in new issue