15 lines
315 B
C#
15 lines
315 B
C#
namespace AdventureWorks.MAUI
|
|
{
|
|
public partial class AppShell : Shell
|
|
{
|
|
public AppShell()
|
|
{
|
|
InitializeComponent();
|
|
|
|
// Register routes for navigation
|
|
Routing.RegisterRoute(nameof(Views.UserDetailView), typeof(Views.UserDetailView));
|
|
|
|
}
|
|
}
|
|
}
|