11 lines
203 B
C#
Executable File
11 lines
203 B
C#
Executable File
namespace HomePantry;
|
|
|
|
public partial class AppShell : Shell
|
|
{
|
|
public AppShell()
|
|
{
|
|
InitializeComponent();
|
|
Routing.RegisterRoute("productdetail", typeof(Views.ProductDetailPage));
|
|
}
|
|
}
|