|
|
|
@ -2,10 +2,10 @@
|
|
|
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
|
x:Class="essai1.NewPage1"
|
|
|
|
|
Title="Espece Adoptable">
|
|
|
|
|
Title="Wikipet's">
|
|
|
|
|
<VerticalStackLayout
|
|
|
|
|
Spacing="45"
|
|
|
|
|
Padding="50,0">
|
|
|
|
|
Padding="5,15">
|
|
|
|
|
|
|
|
|
|
<HorizontalStackLayout
|
|
|
|
|
Spacing="25"
|
|
|
|
@ -14,45 +14,40 @@
|
|
|
|
|
Source="icone_retour.png"
|
|
|
|
|
HeightRequest="50"
|
|
|
|
|
HorizontalOptions="Start"/>
|
|
|
|
|
<Label
|
|
|
|
|
Text="retour"
|
|
|
|
|
SemanticProperties.HeadingLevel="Level1"
|
|
|
|
|
FontSize="50"
|
|
|
|
|
HorizontalOptions="Start"/>
|
|
|
|
|
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
<Label
|
|
|
|
|
Text="Liste des animaux de compagnie :"
|
|
|
|
|
<Label
|
|
|
|
|
Text="Les espèces"
|
|
|
|
|
SemanticProperties.HeadingLevel="Level1"
|
|
|
|
|
FontSize="30"
|
|
|
|
|
FontSize="40"
|
|
|
|
|
HorizontalOptions="Start"
|
|
|
|
|
TextDecorations="Underline"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</HorizontalStackLayout>
|
|
|
|
|
|
|
|
|
|
<HorizontalStackLayout
|
|
|
|
|
Spacing="25"
|
|
|
|
|
Padding="30,0">
|
|
|
|
|
<StackLayout BackgroundColor="{StaticResource Primary}">
|
|
|
|
|
<Image Source="chien.jpg" HeightRequest="200" />
|
|
|
|
|
<StackLayout BackgroundColor="{StaticResource Primary}" HeightRequest="300" WidthRequest="250" Padding="0, 25">
|
|
|
|
|
<Image Source="chien.jpg" HeightRequest="200" WidthRequest="200" />
|
|
|
|
|
<Label Text="Chien" FontSize="25" Margin="15" TextColor="{StaticResource Secondary}" HorizontalOptions="Center"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
|
|
<StackLayout BackgroundColor="{StaticResource Primary}">
|
|
|
|
|
<Image Source="chat.jpg" HeightRequest="200" />
|
|
|
|
|
<StackLayout BackgroundColor="{StaticResource Primary}" HeightRequest="300" WidthRequest="250" Padding="0, 25">
|
|
|
|
|
<Image Source="chat.jpg" HeightRequest="200" WidthRequest="200" />
|
|
|
|
|
<Label Text="Chat" FontSize="25" Margin="15" TextColor="{StaticResource Secondary}" HorizontalOptions="Center"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
|
|
<StackLayout BackgroundColor="{StaticResource Primary}">
|
|
|
|
|
<Image Source="furet.jpg" HeightRequest="200" />
|
|
|
|
|
<StackLayout BackgroundColor="{StaticResource Primary}" HeightRequest="300" WidthRequest="250" Padding="0, 25">
|
|
|
|
|
<Image Source="furet.jpg" HeightRequest="200" WidthRequest="200"/>
|
|
|
|
|
<Label Text="Furet" FontSize="25" Margin="15" TextColor="{StaticResource Secondary}" HorizontalOptions="Center"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
|
|
<StackLayout BackgroundColor="{StaticResource Primary}">
|
|
|
|
|
<Image Source="hamster.jpg" HeightRequest="200" />
|
|
|
|
|
<StackLayout BackgroundColor="{StaticResource Primary}" HeightRequest="300" WidthRequest="250" Padding="0, 25">
|
|
|
|
|
<Image Source="hamster.jpg" HeightRequest="200" WidthRequest="200"/>
|
|
|
|
|
<Label Text="Hamster" FontSize="25" Margin="15" TextColor="{StaticResource Secondary}" HorizontalOptions="Center"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
|
|
<StackLayout BackgroundColor="{StaticResource Primary}">
|
|
|
|
|
<Image Source="poissonrouge.jpg" HeightRequest="200" />
|
|
|
|
|
<StackLayout BackgroundColor="{StaticResource Primary}" HeightRequest="300" WidthRequest="250" Padding="0, 25">
|
|
|
|
|
<Image Source="poissonrouge.jpg" HeightRequest="200" WidthRequest="200"/>
|
|
|
|
|
<Label Text="Poison Rouge" FontSize="25" Margin="15" TextColor="{StaticResource Secondary}" HorizontalOptions="Center"/>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
|
|