Create an easy to peek SwiftUI View to showcase your own data, catalog, images, or anything you'd like.
You can use the CardStack
SwiftUI view in the following platforms:
- macOS 10.12+ 🖥
- iOS 14.0+ 📱
- tvOS 14.0+ 📺
File > Swift Packages > Add Package Dependency: https://github.com/p-larson/SwiftUICardStack
Select main
branch then click done
.
Add a dependency in your Package.swift
.package(url: "https://github.com/p-larson/SwiftUICardStack", branch: "main")
CardStack(
items: cards,
selection: $selectedCard,
builder: CardView.init(model:)
)
.sheet(item: $selectedCard) { card in
VStack {
Text(card.name)
Text(card.description)
Text(card.id)
Text(card.someMoreDetailedInformation())
}
}
See Full Example Usage @ SwiftUICardStack/Example
Line 17 of Sources/SwiftUICardStack/CardStackSource.swift
private(set) lazy var views: Array<AnyView> = items.map(builder).map(\.eraseToAnyView)
Why this is my favorite
I use the power of KeyPaths to type erase the data set in a short and sweet one liner!
Open Source MIT License, aka: use how you please 😎