using FieldLogger.Views; namespace FieldLogger; public partial class AppShell : Shell { public AppShell() { InitializeComponent(); Routing.RegisterRoute("devicescan", typeof(DeviceScanPage)); Routing.RegisterRoute("jobdetail", typeof(JobDetailPage)); #if DEBUG // Keep diagnostics available to development builds without presenting Debug as // a production primary tab. Routing.RegisterRoute("debug", typeof(DebugPage)); #endif } }