20 lines
515 B
C#
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
|
|
}
|
|
}
|