parent
0b474a35d7
commit
7b9a792e08
@ -1,51 +1,58 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
<ContentPage x:Class="Views.Animaux"
|
||||
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Views.Animaux"
|
||||
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
|
||||
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="+"
|
||||
<ScrollView>
|
||||
<toolkit:DockLayout>
|
||||
<Button Text="+"
|
||||
FontSize="Large"
|
||||
Background="{StaticResource Primary}"
|
||||
toolkit:DockLayout.DockPosition="Bottom"
|
||||
VerticalOptions="End"
|
||||
HorizontalOptions="End"
|
||||
Margin="20"/>
|
||||
</VerticalStackLayout>
|
||||
<VerticalStackLayout>
|
||||
<Grid RowDefinitions="Auto, *"
|
||||
RowSpacing="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"
|
||||
HeightRequest="60"
|
||||
WidthRequest="60"
|
||||
Padding="0"
|
||||
Margin="10"
|
||||
BorderColor="{StaticResource Primary}">
|
||||
<Image Source="{Binding Image}"/>
|
||||
</Frame>
|
||||
<VerticalStackLayout Grid.Column="1">
|
||||
<Label Text="{Binding Nom}"
|
||||
FontSize="Large"/>
|
||||
<Label Text="{Binding NomScientifique}"
|
||||
FontSize="12"/>
|
||||
</VerticalStackLayout>
|
||||
</Grid>
|
||||
</Border>
|
||||
</Grid>
|
||||
</ViewCell>
|
||||
</DataTemplate>
|
||||
</ListView.ItemTemplate>
|
||||
</ListView>
|
||||
</Grid>
|
||||
</VerticalStackLayout>
|
||||
</toolkit:DockLayout>
|
||||
</ScrollView>
|
||||
</ContentPage>
|
@ -0,0 +1,66 @@
|
||||
<?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.DetailAnimal"
|
||||
Title="{Binding Nom}">
|
||||
<ScrollView>
|
||||
<VerticalStackLayout>
|
||||
<Image Source="{Binding Image}"
|
||||
MaximumWidthRequest="300"
|
||||
Margin="20"
|
||||
HorizontalOptions="Center"/>
|
||||
<Border Stroke="{StaticResource Secondary}"
|
||||
StrokeThickness="2"
|
||||
Margin="20"
|
||||
Padding="10"
|
||||
Background="{StaticResource Primary}"
|
||||
VerticalOptions="Start"
|
||||
Grid.Column="1">
|
||||
<Grid RowDefinitions="Auto, Auto, Auto, Auto, Auto, Auto, Auto"
|
||||
ColumnDefinitions="*, *"
|
||||
RowSpacing="8">
|
||||
<Label FontAttributes="Bold"
|
||||
Text="Date de naissance"/>
|
||||
<Label Grid.Column="1"
|
||||
HorizontalOptions="End"
|
||||
Text="{Binding DateNaissance}"/>
|
||||
<Label Grid.Row="1"
|
||||
FontAttributes="Bold"
|
||||
Text="Sexe"/>
|
||||
<Label Grid.Column="2"
|
||||
Grid.Row="1"
|
||||
HorizontalOptions="End"
|
||||
Text="{Binding Sexe}"/>
|
||||
<Label Grid.Row="2"
|
||||
FontAttributes="Bold"
|
||||
Text="Date d'adoption"/>
|
||||
<Label Grid.Column="2"
|
||||
Grid.Row="2"
|
||||
HorizontalOptions="End"
|
||||
Text="{Binding DateAdoption}"/>
|
||||
<Label Grid.Row="3"
|
||||
FontAttributes="Bold"
|
||||
Text="Taille"/>
|
||||
<Label Grid.Column="2"
|
||||
Grid.Row="3"
|
||||
HorizontalOptions="End"
|
||||
Text="{Binding Taille}"/>
|
||||
<Label Grid.Row="4"
|
||||
FontAttributes="Bold"
|
||||
Text="Poids"/>
|
||||
<Label Grid.Column="2"
|
||||
Grid.Row="4"
|
||||
HorizontalOptions="End"
|
||||
Text="{Binding Poids}"/>
|
||||
<Label Grid.Row="5"
|
||||
FontAttributes="Bold"
|
||||
Text="Alimentation"/>
|
||||
<Label Grid.Column="2"
|
||||
Grid.Row="5"
|
||||
HorizontalOptions="End"
|
||||
Text="{Binding Alimentation}"/>
|
||||
</Grid>
|
||||
</Border>
|
||||
</VerticalStackLayout>
|
||||
</ScrollView>
|
||||
</ContentPage>
|
@ -0,0 +1,10 @@
|
||||
namespace Views;
|
||||
|
||||
public partial class DetailAnimal : ContentPage
|
||||
{
|
||||
public DetailAnimal()
|
||||
{
|
||||
InitializeComponent();
|
||||
BindingContext = (App.Current as App).AnimalSelectionner;
|
||||
}
|
||||
}
|
@ -1,6 +1,8 @@
|
||||
<?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:Views"
|
||||
x:Class="Views.MainPage">
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
|
||||
xmlns:local="clr-namespace:Views"
|
||||
x:Class="Views.MainPage">
|
||||
|
||||
</ContentPage>
|
||||
|
Loading…
Reference in new issue