- July 26, 2025
- Mins Read
Bez is a swift package aimed at making Bézier curves easy to work with and manipulate.
Try out all that bez has to offer by creating your own shapes using the bez editor app available for free on iOS 13.4 and greater.
The various utilities included are:
import SwiftUI
import bez
struct ContentView: View {
@ObservedObject var polybezier: PolyBezier = PolyBezier(Circle().path(in: .init(x: 50, y: 100, width: 100, height: 100)))
var body: some View {
NavigationView {
PathEditor(polybezier: _polybezier, name: “Shape”,
save: { (name , path) in print(path)})
.navigationBarTitle(“Bez Editor”, displayMode: .inline)
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView().colorScheme(.dark)
}
}
The PSlider
component of the Sliders SwiftUI Library
NavigationKit is a lightweight library which makes SwiftUI navigation super easy to use. 💻 Installation 📦 Swift Package Manager Using Swift Package Manager, add ...
An alternative SwiftUI NavigationView implementing classic stack-based navigation giving also some more control on animations and programmatic navigation. NavigationStack Installation ...
With SwiftUI Router you can power your SwiftUI app with path-based routing. By utilizing a path-based system, navigation in your app becomes ...
This package takes SwiftUI's familiar and powerful NavigationStack API and gives it superpowers, allowing you to use the same API not just ...