ProgressHUD icon indicating copy to clipboard operation
ProgressHUD copied to clipboard

ProgressHUD is a lightweight and easy-to-use HUD for iOS. Over 5000+ animations. ‼️

Results 28 ProgressHUD issues
Sort by recently updated
recently updated
newest added

Hello! Do you plan create native SwiftUI components and add it to the framework? Thanks

This PR adds - default success and error haptic feedback - the ability to pass in any [haptic feedback type](https://developer.apple.com/documentation/uikit/uinotificationfeedbackgenerator/feedbacktype) (for example, you could pass `.warning` when displaying ⚠️) -...

ProgressHUD view is not on top it is showed in between: UIWindowScene (Foreground active) -> UIWindow -> UIView -> ProgressHUD -> TopViewController But when I cal show method second time...

The below code is not showing the Second HUD. ` ProgressHUD.show("First Hud...",interaction: false) DispatchQueue.main.asyncAfter(deadline: .now()+4.0) { ProgressHUD.dismiss() ProgressHUD.show("Second Hud...",interaction: false) DispatchQueue.main.asyncAfter(deadline: .now()+4.0) { ProgressHUD.dismiss() } } `

create tag of 13.6.1 version Try it in your Xcode.

How does blocking user interaction in ProgressHUD

I use `UIPresentationController` As shown in the picture, I call the `ProgressHUD.show()` in `LoginPopupWindow` But it is covered What should I do? please ![截屏2021-04-30 下午9 21 33](https://user-images.githubusercontent.com/15354932/116701494-8a2c2880-a9fa-11eb-948f-5e57c12a1fa7.png)

In my case, I need to show an error immediately hide the progress hud. But `hubHide()` function has 0.15s for animation so I can't show an error.