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.
51 lines
2.5 KiB
51 lines
2.5 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"
|
|
x:Class="Views.Animaux"
|
|
Title="Vos animaux">
|
|
<VerticalStackLayout>
|
|
<Grid RowDefinitions="Auto, *"
|
|
RowSpacing="20"
|
|
Padding="20">
|
|
<ListView ItemsSource="{Binding ListeAnimaux}"
|
|
Grid.Row="1">
|
|
<ListView.ItemTemplate>
|
|
<DataTemplate>
|
|
<ViewCell>
|
|
<Grid Margin="0,0,0,4">
|
|
<Border Stroke="{StaticResource Secondary}"
|
|
StrokeThickness="2"
|
|
Margin="10"
|
|
Padding="10"
|
|
BackgroundColor="{StaticResource Primary}">
|
|
<Grid ColumnDefinitions="Auto, *"
|
|
RowDefinitions="3*, *, *"
|
|
ColumnSpacing="15">
|
|
<Frame Grid.RowSpan="3"
|
|
WidthRequest="80"
|
|
HeightRequest="80"
|
|
Padding="0"
|
|
Margin="10"
|
|
BorderColor="{StaticResource Primary}" >
|
|
<Image Source="{Binding Image}"/>
|
|
</Frame>
|
|
<Label Text="{Binding Nom}"
|
|
Grid.Column="1"
|
|
Grid.Row="0"
|
|
FontSize="Medium"/>
|
|
</Grid>
|
|
</Border>
|
|
</Grid>
|
|
</ViewCell>
|
|
</DataTemplate>
|
|
</ListView.ItemTemplate>
|
|
</ListView>
|
|
</Grid>
|
|
<Button Text="+"
|
|
FontSize="Large"
|
|
Background="{StaticResource Primary}"
|
|
VerticalOptions="End"
|
|
HorizontalOptions="End"
|
|
Margin="20"/>
|
|
</VerticalStackLayout>
|
|
</ContentPage> |