- August 28, 2025
- Mins Read
A SwiftUI card design similar to the one used by Apple in HomeKit, AirPods, Apple Card and AirTag setup, NFC scanning, Wi-Fi password sharing and more. It is specially great for setup interactions.
From left to right: SlideOverCard being used in Clear Spaces, a QR code scanner prompt (made with CodeScanner) and a sample demo app
This repository is a Swift package, so just include it in your Xcode project and target under File > Add package dependencies. Then, import SlideOverCard
to the Swift files where you’ll be using it.
Adding a card to your app is insanely easy. Just add a .slideOverCard()
modifier anywhere in your view hierarchy, similarly to a .sheet()
:
.slideOverCard(isPresented: $isPresented) {
// Here goes your awesome content
}
And that’s it! It just works. In this case, $isPresented
is a boolean binding. This way you can dismiss the view anytime by setting it to false
.
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 ...