DeckKit

1.3.0

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

What's New

2024-05-26T09:36:46Z

This version has breaking changes for the favorite context/service setup, to make favorites easier to use.

Favorite contexts are now created with a service, and shares the type. This however requires that both types are generic.

✨ New features

  • Card is a new view, with a front and back view and flip support.

🗑️ Deprecations

  • Configuration has been converted to an Equatable extension.
  • View deckShuffleAnimation has been converted to an internal modifier.

💥 Breaking Changes

  • The favorite types have cleaned up their generic designed to be easier to use.

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 views as well, and can be customized to great extent. You can change colors, fonts, etc. and use completely custom views. It also has tools to manage favorite items.

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: Wed Nov 20 2024 22:30:16 GMT-1000 (Hawaii-Aleutian Standard Time)