using BookApp; namespace BookApp.ContentViews; public partial class ImageCard : ContentView { public ImageCard() { InitializeComponent(); } async void TapGestureRecognizer_Tapped(System.Object sender, Microsoft.Maui.Controls.TappedEventArgs e) { await Navigation.PushModalAsync(new BookApp.Player()); } }