Przeprowadzka

This commit is contained in:
2026-07-16 12:25:33 +02:00
commit 10d59ede33
7016 changed files with 726877 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
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}");
}
}