Files
HomePantry-MAUI/AppShell.xaml.cs
T
2026-07-16 12:25:33 +02:00

11 lines
203 B
C#
Executable File

namespace HomePantry;
public partial class AppShell : Shell
{
public AppShell()
{
InitializeComponent();
Routing.RegisterRoute("productdetail", typeof(Views.ProductDetailPage));
}
}