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); }
public static void ShowToast(string status, ProgressHUD.ToastPosition toastPosition = ProgressHUD.ToastPosition.Center, double timeoutMs = 1000) { ProgressHUD.Shared.ShowToast(status, ProgressHUD.MaskType.None, toastPosition, timeoutMs); }
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); }
public static void ShowContinuousProgress(string status = null, ProgressHUD.MaskType maskType = ProgressHUD.MaskType.None) { ProgressHUD.Shared.ShowContinuousProgress(status, maskType); }
public static void Show(string status = null, float progress = -1, ProgressHUD.MaskType maskType = ProgressHUD.MaskType.None) { ProgressHUD.Shared.Show(status, progress, maskType); }