lfarah / LinearProgressBar

A simple Linear Progress Bar for IOS (Swift 2.0), inspired by Material Design

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Linear Progress Bar (Material Design)

Platform Language License

Linear Progress Bar (inspired by Google Material Design) for iOS written in Swift 2.0

Please feel free to make pull requests :)

alt tag

INSTALLATION

####Manually Simply add LinearProgressBar.swift file on your project.

####CocoaPods You can use Cocoapods to install Linear Progress Bar by adding it to your Podfile:

platform :ios, '8.0'
use_frameworks!

target 'MyApp' do
	pod 'LinearProgressBar', :git => 'https://github.com/PhilippeBoisney/LinearProgressBar.git'
end

USAGE

//Simply, Call Progress Bar
let linearBar: LinearProgressBar = LinearProgressBar()

//Add it to your MainView
self.view.addSubview(linearBar)

//Start Animation
self.linearBar.startAnimation()

//Stop Animation
self.linearBar.stopAnimation()

OPTIONS

//Change background color
linearBar.backgroundColor = UIColor(red:0.68, green:0.81, blue:0.72, alpha:1.0)
linearBar.progressBarColor = UIColor(red:0.26, green:0.65, blue:0.45, alpha:1.0)

//Change height of progressBar
linearBar.heightForLinearBar = 5

FEATURES

  • Multi-Device Full Support
  • Rotation Support
  • Material Design Effect

Version

1.0.0

Author

Philippe BOISNEY (phil.boisney(@)gmail.com)

About

A simple Linear Progress Bar for IOS (Swift 2.0), inspired by Material Design


Languages

Language:Swift 92.0%Language:Ruby 8.0%