- August 22, 2025
- 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 SwiftUI Marquee or "scrolling text" effect found in Apple native apps. For when one line isn't enough, but two ...
Introduction Text composition in SwiftUI can often be cumbersome, especially when there's logic affecting its format and content. TextBuilder leverages the ...