jstheoriginal / NicoProgress

iOS Linear progress bar with determinate and indeterminate states

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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, nicorichard@gmail.com

License

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

About

iOS Linear progress bar with determinate and indeterminate states

License:MIT License


Languages

Language:Swift 88.8%Language:Ruby 7.1%Language:Objective-C 4.1%