• This repository has been archived on 21/Mar/2023
  • Stars
    star
    161
  • Rank 226,364 (Top 5 %)
  • Language
    Swift
  • License
    MIT License
  • Created about 6 years ago
  • Updated over 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Material Linear Progress Bar for your iOS apps

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