namespace NotesNet8 { public partial class AppShell : Shell { public AppShell() { InitializeComponent(); RegisterRoutes(); } private void RegisterRoutes() { Routing.RegisterRoute(nameof(Views.NotePage), typeof(Views.NotePage)); } } }