Exemplo n.º 1
0
 public static void ShowSuccessWithStatus(string status, double timeoutMs = 1000, ProgressHUD.MaskType maskType = ProgressHUD.MaskType.None)
 {
     ProgressHUD.Shared.ShowSuccessWithStatus(status, timeoutMs, maskType);
 }
Exemplo n.º 2
0
 public static void ShowToast(string status, ProgressHUD.MaskType maskType = ProgressHUD.MaskType.None, bool showToastCentered = true, double timeoutMs = 1000)
 {
     ProgressHUD.Shared.ShowToast(status, maskType, showToastCentered ? ProgressHUD.ToastPosition.Center : ProgressHUD.ToastPosition.Bottom, timeoutMs);
 }
Exemplo n.º 3
0
 public static void Show(string cancelCaption, Action cancelCallback, string status = null, float progress = -1, ProgressHUD.MaskType maskType = ProgressHUD.MaskType.None)
 {
     ProgressHUD.Shared.Show(cancelCaption, cancelCallback, status, progress, maskType);
 }
Exemplo n.º 4
0
 public static void ShowContinuousProgress(string status = null, ProgressHUD.MaskType maskType = ProgressHUD.MaskType.None)
 {
     ProgressHUD.Shared.ShowContinuousProgress(status, maskType);
 }
Exemplo n.º 5
0
 public static void Show(string status = null, float progress = -1, ProgressHUD.MaskType maskType = ProgressHUD.MaskType.None)
 {
     ProgressHUD.Shared.Show(status, progress, maskType);
 }