How do I close the current page?
I tried with PopAsync and PopToRootAsync but nothing happens.
`
void btnCancel_Clicked(Object sender, EventArgs e)
{
this.Navigation.PopAsync();
//this.Navigation.PopToRootAsync ();
}
`