Skip to content
Permalink
4e6b0bb600
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
24 lines (20 sloc) 977 Bytes
using Microsoft.Maui.Controls;
using Mobile_app_development6002CEM.Views;
namespace Mobile_app_development6002CEM;
public partial class AppShell : Shell
{
public AppShell()
{
InitializeComponent();
Routing.RegisterRoute(nameof(LoginPage),typeof(LoginPage));
Routing.RegisterRoute(nameof(RegisterPage), typeof(RegisterPage));
Routing.RegisterRoute(nameof(HomePage), typeof(HomePage));
Routing.RegisterRoute(nameof(UserAccountPage), typeof(UserAccountPage));
Routing.RegisterRoute(nameof(WalletPage), typeof(WalletPage));
Routing.RegisterRoute(nameof(PaymentPage), typeof(PaymentPage));
Routing.RegisterRoute(nameof(BookingPage), typeof(BookingPage));
Routing.RegisterRoute(nameof(updateEmail), typeof(updateEmail));
Routing.RegisterRoute(nameof(updatePass), typeof(updatePass));
Routing.RegisterRoute(nameof(TransactionPage), typeof(TransactionPage));
}
}