namespace HomePantry.Views; public partial class CategoriesPage : ContentPage { public CategoriesPage() { InitializeComponent(); } private async void OnProductClicked(object sender, EventArgs e) { var button = (Button)sender; await Shell.Current.GoToAsync($"productdetail?name={button.ClassId}"); } }