NicoProgress 0.4.0

NicoProgress 0.4.0

Maintained by Nicolas Richard.



  • By
  • Nicolas Richard

NicoProgress

Version License Platform Carthage compatible

iOS implementation of material progress bars.

About

I needed a simple Material Design progress bar, with both determinate and indeterminate states, for a project I was working on. No other Pod I looked at supported both these features; and they did not respond well to resizes, or being added via Interface Builder.

Example GIF

Usage

Add NicoProgressBar to your nib or programmatically as a subview.

Set Progress

progressBar.transition(to: .determinate(percentage: 0.5))

Indeterminate

progressBar.transition(to: .indeterminate)

Customization

Colors

progressBar.primaryColor = .blue
progressBar.secondaryColor = .white

Duration

progressBar.indeterminateAnimationDuration = 1.5
progressBar.determinateAnimationDuration = 1.5

State

progressBar.state

case indeterminate
case determinate(percentage: CGFloat)

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

iOS Deployment Target >= 8.0 Swift 3.2 or 4

Installation

NicoProgress is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'NicoProgress'

Author

Nicolas Richard, [email protected]

License

NicoProgress is available under the MIT license. See the LICENSE file for more info.