16 lines
385 B
C#
16 lines
385 B
C#
|
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)}");
|
||
|
}
|
||
|
}
|