public new async Task <string> DisplayActionSheet(string title, string cancel, string destruction, string[] button)
 {
     return(await LockScreen.ToDisplayActionSheet(SplitView.Instace(), title, cancel, destruction, button));
 }
 void ShowHelpScreen()
 {
     SplitView.Instace().Navigation.PushModalAsync(AppContext.AppContext.HelpPageInstance);
 }
 public new static async Task <bool> DisplayAlert(string title, string message, string accept, string cancel)
 {
     return(await LockScreen.ToDisplayAlert(SplitView.Instace(), title, message, accept, cancel));
 }