You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

16 lines
385 B

namespace GMCabsDriverAssistantSolution.Views;
public partial class InstallCompletePage : ContentPage
{
public InstallCompletePage()
{
InitializeComponent();
}
private async void Continue_Clicked(object sender, EventArgs e)
{
(App.Current as App).MainPage = new AppShell();
await Shell.Current.GoToAsync($"//{nameof(LoginPage)}");
}
}