I have an One Page application "ContentPage" and i can't close the app with "PopAsync()"
I'm debugging with Samsung J6.
// Instantiated page
MainPage = new NavigationPage(new MainPage());
// Method used to close the application
private async void Leave(object sender, EventArgs e)
{
await Navigation.PopAsync();
}