diff --git a/Sources/Views/Animaux.xaml b/Sources/Views/Animaux.xaml index e09adeb..ec2c572 100644 --- a/Sources/Views/Animaux.xaml +++ b/Sources/Views/Animaux.xaml @@ -17,7 +17,8 @@ + Grid.Row="1" + ItemTapped="OnClick"> diff --git a/Sources/Views/Animaux.xaml.cs b/Sources/Views/Animaux.xaml.cs index 6ed7292..4b4027b 100644 --- a/Sources/Views/Animaux.xaml.cs +++ b/Sources/Views/Animaux.xaml.cs @@ -17,5 +17,10 @@ public partial class Animaux : ContentPage (App.Current as App).AnimalSelectionner = e.Item as Animal; Navigation.PushAsync(new DetailAnimal()); } + + private void ListView_ItemTapped(object sender, ItemTappedEventArgs e) + { + + } }