All Projects → relatedcode → Progresshud

relatedcode / Progresshud

Licence: mit
ProgressHUD is a lightweight and easy-to-use HUD for iOS.

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Progresshud

Ep
enhance your HTML5 progress bars with minimal effort!
Stars: ✭ 648 (-68.31%)
Mutual labels:  progress-bar, progressbar
Radialprogressbar
Radial ProgressBar inspired by Apple Watch OS. It is highly Customisable
Stars: ✭ 141 (-93.11%)
Mutual labels:  progress-bar, progressbar
Python Progressbar
Progressbar 2 - A progress bar for Python 2 and Python 3 - "pip install progressbar2"
Stars: ✭ 682 (-66.65%)
Mutual labels:  progress-bar, progressbar
Pb
Console progress bar for Rust
Stars: ✭ 402 (-80.34%)
Mutual labels:  progress-bar, progressbar
Toothyprogress
A polyline determinated ProgressBar written in Kotlin
Stars: ✭ 56 (-97.26%)
Mutual labels:  progress-bar, progressbar
Node.cli Progress
⌛️ easy to use progress-bar for command-line/terminal applications
Stars: ✭ 466 (-77.21%)
Mutual labels:  progress-bar, progressbar
Roundprogresstextview
TextView with Round Pogress
Stars: ✭ 18 (-99.12%)
Mutual labels:  progress-bar, progressbar
svelte-progressbar
A multiseries, SVG progressbar component made with Svelte
Stars: ✭ 85 (-95.84%)
Mutual labels:  progress-bar, progressbar
Progressbar
A really basic thread-safe progress bar for Golang applications
Stars: ✭ 2,212 (+8.17%)
Mutual labels:  progress-bar, progressbar
Missme
Same Old Android Progress Dialog
Stars: ✭ 49 (-97.6%)
Mutual labels:  progress-bar, progressbar
Tqdm
A Fast, Extensible Progress Bar for Python and CLI
Stars: ✭ 20,632 (+908.9%)
Mutual labels:  progress-bar, progressbar
Ruby Progressbar
Ruby/ProgressBar is a text progress bar library for Ruby.
Stars: ✭ 1,378 (-32.62%)
Mutual labels:  progress-bar, progressbar
Rsup Progress
❤️ A simple progress bar with promises support
Stars: ✭ 290 (-85.82%)
Mutual labels:  progress-bar, progressbar
Multiprogressview
📊 An animatable view that depicts multiple progresses over time. Modeled after UIProgressView
Stars: ✭ 614 (-69.98%)
Mutual labels:  progress-bar, progressbar
Progress bar
Command-line progress bars and spinners for Elixir.
Stars: ✭ 281 (-86.26%)
Mutual labels:  progress-bar, progressbar
Go Pretty
Pretty print tables and more in golang!
Stars: ✭ 777 (-62%)
Mutual labels:  progress-bar, progressbar
ffmpeg-progressbar-cli
A colored progress bar for FFmpeg.
Stars: ✭ 140 (-93.15%)
Mutual labels:  progress-bar, progressbar
VHProgressBar
Vartical and Horizontal ProgressBar
Stars: ✭ 23 (-98.88%)
Mutual labels:  progress-bar, progressbar
Vue Step Progress
A simple Vue component that displays a Progress Bar with labels for each step
Stars: ✭ 26 (-98.73%)
Mutual labels:  progress-bar, progressbar
Delayedprogress
ProgressDialog that waits a minimum time to be dismissed before showing. Once visible, the ProgressDialog will be visible for a minimum amount of time to avoid "flashes" in the UI.
Stars: ✭ 95 (-95.35%)
Mutual labels:  progress-bar, progressbar


WHAT'S NEW IN 13.5 and 13.6

  • Bugfix related to iPad split screen
  • Bugfix related to showProgress

OVERVIEW

ProgressHUD is a lightweight and easy-to-use HUD for iOS.

INSTALLATION

CocoaPods:

CocoaPods is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate ProgressHUD into your Xcode project using CocoaPods, specify it in your Podfile:

pod 'ProgressHUD'

Manually

If you prefer not to use any of the dependency managers, you can integrate ProgressHUD into your project manually. Just copy the ProgressHUD.swift file in your Xcode project.

QUICK START

ProgressHUD.show("Some text...")
ProgressHUD.showSucceed()
ProgressHUD.showFailed()
ProgressHUD.showProgress(0.42)
ProgressHUD.show(icon: .heart)
ProgressHUD.dismiss()

REQUIREMENTS

  • iOS 13.0+

CUSTOMIZATION

You can customize the color, font, image, animation type, and other some options using the following methods:

ProgressHUD.animationType = .circleStrokeSpin
ProgressHUD.colorHUD = .systemGray
ProgressHUD.colorBackground = .lightGray
ProgressHUD.colorAnimation = .systemBlue
ProgressHUD.colorProgress = .systemBlue
ProgressHUD.colorStatus = .label
ProgressHUD.fontStatus = .boldSystemFont(ofSize: 24)
ProgressHUD.imageSuccess = UIImage(named: "success.png")
ProgressHUD.imageError = UIImage(named: "error.png")

The list of predefined animation and icon types:

public enum AnimationType {
	case systemActivityIndicator
	case horizontalCirclesPulse
	case lineScaling
	case singleCirclePulse
	case multipleCirclePulse
	case singleCircleScaleRipple
	case multipleCircleScaleRipple
	case circleSpinFade
	case lineSpinFade
	case circleRotateChase
	case circleStrokeSpin
}
public enum AnimatedIcon {
	case succeed
	case failed
	case added
}
public enum AlertIcon {
	case heart
	case doc
	case bookmark
	case moon
	case star
	case exclamation
	case flag
	case message
	case question
	case bolt
	case shuffle
	case eject
	case card
	case rotate
	case like
	case dislike
	case privacy
	case cart
	case search
}

LICENSE

MIT License

Copyright (c) 2021 Related Code

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].