Created
October 14, 2019 13:04
-
-
Save marcelosalloum/d7e72b329c8826ce5768f82df8d17a8c to your computer and use it in GitHub Desktop.
HUD usage on medium post - p4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import SVProgressHUD | |
| struct HUD { | |
| static func showSuccessHUD(withStatus status: String, delay: TimeInterval = 2) { | |
| SVProgressHUD.setBackgroundColor(.white) | |
| SVProgressHUD.setForegroundColor(.black) | |
| SVProgressHUD.showSuccess(withStatus: status) | |
| SVProgressHUD.dismiss(withDelay: delay) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment