Files
ulapp/FieldLogger/AppShell.xaml.cs
2026-08-23 20:54:03 -05:00

20 lines
515 B
C#

using FieldLogger.Views;
namespace FieldLogger;
public partial class AppShell : Shell
{
public AppShell()
{
InitializeComponent();
Routing.RegisterRoute("devicescan", typeof(DeviceScanPage));
Routing.RegisterRoute("jobdetail", typeof(JobDetailPage));
Routing.RegisterRoute("debug", typeof(HomePage));
#if DEBUG
// The raw device console is a development-only maintenance interface.
Routing.RegisterRoute("deviceconsole", typeof(DebugPage));
#endif
}
}