- December 17, 2024
- Mins Read
Material Linear Progress Bar for your iOS apps
github “Recouse/LinearProgressBar”
Add this to your Podfile
pod ‘MaterialProgressBar’
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()
A vertical stackview which takes subviews with different widths and adds them to it's rows with paddings, spacings etc.
AudioManager is a Swift package that provides a modular and easy-to-use interface for implementing audio feedback in your applications. It ...