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.
52 lines
2.1 KiB
52 lines
2.1 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:local="clr-namespace:MangaMap"
|
|
x:Class="MangaMap.Views.ficheAnime"
|
|
Title="ficheAnime"
|
|
BackgroundColor="{StaticResource Secondary}">
|
|
|
|
<Grid RowDefinitions="40, *">
|
|
<local:NewContent1 HeightRequest="40" VerticalOptions="Start" Padding="10, 0"/>
|
|
|
|
<VerticalStackLayout Grid.Row="1">
|
|
|
|
<HorizontalStackLayout>
|
|
<Rectangle
|
|
WidthRequest="150"
|
|
HeightRequest="150"
|
|
Fill="Red"
|
|
HorizontalOptions="Start"
|
|
Margin="50"/>
|
|
|
|
<Label Text="Titre" FontSize="Header" VerticalOptions="Center"/>
|
|
</HorizontalStackLayout>
|
|
|
|
<Grid>
|
|
<Label Text="test"/>
|
|
<Label Text="test"/>
|
|
<Label Text="test" BackgroundColor="{StaticResource Primary}"/>
|
|
</Grid>
|
|
|
|
<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"/>
|
|
|
|
<Button Text="Ajouter à la liste"
|
|
TextColor="#FFFFFF"
|
|
HorizontalOptions="Start"
|
|
Margin="20"
|
|
BackgroundColor="{StaticResource Primary}"/>
|
|
</HorizontalStackLayout>
|
|
|
|
<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."
|
|
Margin="20"/>
|
|
|
|
</VerticalStackLayout>
|
|
</Grid>
|
|
|
|
</ContentPage> |