Ejemplo n.º 1
0
 /// <summary>
 /// If possible, discards the current page and displays the previous page
 /// on the navigation stack.
 /// </summary>
 public static void GoBack()
 {
     if (CurrentActivity != null)
     {
         CurrentActivity.OnBackPressed();
     }
 }
Ejemplo n.º 2
0
 public static void GoBack()
 {
     CurrentActivity?.OnBackPressed();
 }