- July 11, 2025
- Mins Read
KYNavigationProgress
is simple extension of UINavigationController to display progress on the UINavigationBar.
KYNavigationProgress
is available on CocoaPods. Add the following to your Podfile
:
use_frameworks!
pod ‘KYNavigationProgress’
KYNavigationProgress
is available through Carthage. To install it, simply add the following line to your Cartfile:
github “ykyouhei/KYNavigationProgress”
import KYNavigationProgress
// get and set progress.
self.navigationController?.progress = 0.5
// set progress with animation.
self.navigationController?.setProgress(0.1, animated: true)
// finish progress.
self.navigationController?.finishProgress()
// cancel progress.
self.navigationController?.cancelProgress()
// default is UIColor(red: 0.0, green: 122/255, blue: 1.0, alpha: 1.0)
self.navigationController?.progressTintColor
// default is UIColor.clearColor()
self.navigationController?.trackTintColor
// default is 2.0
self.navigationController?.progressHeight
A SwiftUI View that emits confetti with user-defined shapes, images, and text.
A colour wheel made all in SwiftUI. There are 2 different colour wheels to choose from. The first main one ...
A color picker implementation with color wheel appearance written in plain SwiftUI. It is compatible with UIColor and NSColor.
This repository is no longer maintained. Here's why: with the release of iOS 16 SwiftUI now enables most of the ...