Skip to content
This repository has been archived by the owner on Mar 21, 2023. It is now read-only.

Recouse/LinearProgressBar

Repository files navigation

LinearProgressBar

Cocoapods Compatible Carthage compatible

Material Linear Progress Bar for your iOS apps

Demo

Installation

Carthage:

github "Recouse/LinearProgressBar"

CocoaPods:

Add this to your Podfile

pod 'MaterialProgressBar'

Requirements

  • iOS 10.0+
  • Xcode 11.0+
  • Swift 5.0+

Usage

import LinearProgressBar

let progressBar = LinearProgressBar()
...
view.addSubview(progressBar)
progressBar.startAnimating()

You can use it like activity indicator in UIViewController:

// Start animating
showProgressBar()

// Stop animating
hideProgressBar()

Contribution

Feel free to make pull requests