Guilhermes
This commit is contained in:
18
GuilhermesApp/AppShell.xaml.cs
Normal file
18
GuilhermesApp/AppShell.xaml.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using GuilhermesApp.Pages;
|
||||
|
||||
namespace GuilhermesApp;
|
||||
|
||||
public partial class AppShell : Shell
|
||||
{
|
||||
public AppShell()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
// Registar rotas para navegação
|
||||
Routing.RegisterRoute(nameof(RegisterPage), typeof(RegisterPage));
|
||||
Routing.RegisterRoute(nameof(ProfilePage), typeof(ProfilePage));
|
||||
Routing.RegisterRoute(nameof(FormsHistoryPage), typeof(FormsHistoryPage));
|
||||
Routing.RegisterRoute(nameof(NewFormPage), typeof(NewFormPage));
|
||||
Routing.RegisterRoute(nameof(FormsMenuPage), typeof(FormsMenuPage));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user