Swiftpack.co - p-larson/SwiftUICardStack as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by p-larson.
p-larson/SwiftUICardStack v1.0
Create an easy to peek SwiftUI View to showcase your own data, catalog, images, or anything you'd like.
โญ๏ธ 20
๐Ÿ•“ 2 years ago
iOS macOS tvOS
.package(url: "https://github.com/p-larson/SwiftUICardStack.git", from: "v1.0")

๐Ÿ—‚ SwiftUICardStack

Create an easy to peek SwiftUI View to showcase your own data, catalog, images, or anything you'd like.

Contents

Supported Platforms

You can use the CardStack SwiftUI view in the following platforms:

  • macOS 10.12+ ๐Ÿ–ฅ
  • iOS 14.0+ ๐Ÿ“ฑ
  • tvOS 14.0+ ๐Ÿ“บ

Package

For your XCode Package

File > Swift Packages > Add Package Dependency: https://github.com/p-larson/SwiftUICardStack

Select main branch then click done.

For Swift Packages

Add a dependency in your Package.swift

.package(url: "https://github.com/p-larson/SwiftUICardStack", branch: "main")

Usage

Simple example

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

Extra

My Favorite Line of Code from the Package ๐Ÿ’•

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!

See View#eraseToAnyView

License

Open Source MIT License, aka: use how you please ๐Ÿ˜Ž

GitHub

link
Stars: 20
Last commit: 2 years ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

Initial Release (1.0.0)
2 years ago

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics