Files
dotnet-maui-workshop/MonkeyFinder/AppShell.xaml.cs
2024-04-22 16:48:36 +02:00

12 lines
238 B
C#

namespace MonkeyFinder;
public partial class AppShell : Shell
{
public AppShell()
{
InitializeComponent();
// nameof(DetailsPage) == "DetailsPage"
Routing.RegisterRoute(nameof(DetailsPage), typeof(DetailsPage));
}
}