- August 12, 2025
- Mins Read
A SwiftUI bottom-up controller, like in the Maps app. Drag to expand or minimize.
File > Swift Packages > Add Package Dependency: https://github.com/maustinstar/swiftui-drawer
Add a dependency in your your Package.swift
.package(url: “https://github.com/maustinstar/swiftui-drawer.git”, from: “0.1.0”),
Embed your view content in a ZStack
with the Drawer as the last element. The heights
parameter defines a list of resting heights for the drawer.
ZStack {
ScrollView {
//…
}
Drawer(heights: [100, 340]) {
Color.blue
}.edgesIgnoringSafeArea(.vertical)
}
See the full Reference Guide.
A multi-height drawer with haptic impact.
Recognize your user's voice elegantly without having to figure out authorization and audio engines. SwiftSpeech Examples Features Installation Getting Started ...
Example To run the example project, clone the repo, and run pod install from the Example directory first. Requirements iOS 14.0 Installation ...
SlidingRuler is a Swift package containing a SwiftUI control that acts like an linear infinite slider or a finite, more precise ...
SkeletonUI aims to bring an elegant, declarative syntax to skeleton loading animations. Get rid of loading screens or spinners and ...