-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppShell.xaml.cs
More file actions
21 lines (19 loc) · 856 Bytes
/
AppShell.xaml.cs
File metadata and controls
21 lines (19 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace EkseemMaarNet
{
public partial class AppShell : Shell
{
public AppShell()
{
InitializeComponent();
//Register Routes
Routing.RegisterRoute(nameof(MainFactorsPage), typeof(MainFactorsPage));
Routing.RegisterRoute(nameof(GlossaryPage), typeof(GlossaryPage));
Routing.RegisterRoute(nameof(WonderCuresPage), typeof(WonderCuresPage));
Routing.RegisterRoute(nameof(TreatmentPage), typeof(TreatmentPage));
Routing.RegisterRoute(nameof(RemediesPage), typeof(RemediesPage));
Routing.RegisterRoute(nameof(SupplementsPage), typeof(SupplementsPage));
Routing.RegisterRoute(nameof(CausesPage), typeof(CausesPage));
Routing.RegisterRoute(nameof(BeveragesPage), typeof(BeveragesPage));
}
}
}