DeckKit

1.2.0

DeckKit is a Swift SDK that helps you build deck-based apps in SwiftUI.
danielsaidi/DeckKit

What's New

2024-05-03T21:16:57Z

This version adds support for strict concurrency checks.

✨ New features

  • DeckViewConfiguration is now applied with a view modifier instead of with the initializer.

💡 Adjustments

  • DeckShuffleAnimation now supports strict concurrency.

🐛 Bug Fixes

  • DeckShuffleAnimation now animates the new cards nicely to the new end state.

DeckKit Logo

Version Swift 5.9 Swift UI MIT License Twitter: @danielsaidi Mastodon: @danielsaidi@mastodon.social

About DeckKit

DeckKit is a Swift SDK that helps you build deck-based apps in SwiftUI.

DeckKit has a DeckView that can render any item collection, with support for swipe gestures, edge swipe detection, shuffling, etc. The result can look like this or completely different:

Demo video

DeckKit has other deck views as well, and can be customized to great extent. You can change colors, fonts, corner radius etc. of the standard card views, and also use completely custom views.

Installation

DeckKit can be installed with the Swift Package Manager:

https://github.com/danielsaidi/DeckKit.git

Getting started

With DeckKit, you can create a Deck of any model that implement the DeckItem protocol:

struct Hobby: DeckItem {
    
    var name: String
    var text: String

    var id: String { name }
}

You can display a deck of cards with any of the built-in views, like a DeckView:

struct MyView: View {

    @State 
    var hobbies: [Hobby] = ...

    var body: some View {
        DeckView($hobbies) { hobby in
            RoundedRectangle(cornerRadius: 25.0)
                .fill(.blue)
                .overlay(Text(hobby.name))
                .shadow(radius: 10)
        }
    }
}

For more information, please see the getting started guide.

Documentation

The online documentation has more information, articles, code examples, etc.

Demo Application

The demo app lets you explore the library with iOS, macOS, and visionOS. To try it out, just open and run the Demo project.

Support my work

You can sponsor me on GitHub Sponsors or reach out for paid support, to help support my open-source projects.

Your support makes it possible for me to put more work into these projects and make them the best they can be.

Contact

Feel free to reach out if you have questions or if you want to contribute in any way:

License

DeckKit is available under the MIT license. See the LICENSE file for more info.

Description

  • Swift Tools 5.9.0
View More Packages from this Author

Dependencies

  • None
Last updated: Mon May 13 2024 17:03:27 GMT-0900 (Hawaii-Aleutian Daylight Time)