- August 28, 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
This package provides you with an easy way to show tooltips over any SwiftUI view, since Apple does not provide ...
SimpleToast is a simple, lightweight, flexible and easy to use library to show toasts / popup notifications inside iOS or ...
Create Toast Views with Minimal Effort in SwiftUI Using SSToastMessage. SSToastMessage enables you to effortlessly add toast notifications, alerts, and ...