12 lines
238 B
C#
12 lines
238 B
C#
namespace MonkeyFinder;
|
|
|
|
public partial class AppShell : Shell
|
|
{
|
|
public AppShell()
|
|
{
|
|
InitializeComponent();
|
|
|
|
// nameof(DetailsPage) == "DetailsPage"
|
|
Routing.RegisterRoute(nameof(DetailsPage), typeof(DetailsPage));
|
|
}
|
|
} |