public void Show(string cancelCaption, Action cancelCallback, string status = null, float progress = -1, ToastMaskType maskType = ToastMaskType.Clear)
 {
     ProgressHUD.Shared.Show(cancelCaption, cancelCallback, status, progress, maskType.ToProgressHUDMaskType());
 }
 public void ShowContinuousProgress(string status = null, ToastMaskType maskType = ToastMaskType.Clear)
 {
     ProgressHUD.Shared.ShowContinuousProgress(status, maskType.ToProgressHUDMaskType());
 }
 public void Show(string status = null, float progress = -1, ToastMaskType maskType = ToastMaskType.Clear)
 {
     ProgressHUD.Shared.Show(status, progress, maskType.ToProgressHUDMaskType());
 }