48

GitHub - ra1028/SwiftUI-Flux: This is a tiny experimental application using Swif...

 5 years ago
source link: https://github.com/ra1028/SwiftUI-Flux
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

README.md

? SwiftUI-Flux

This is a tiny experimental application using SwiftUI with Flux architecture.

sample.gif

struct CounterView : View {
    enum Action {
        case increment
        case decrement
    }

    @State var store = Store<Int, Action>(initial: 0) { count, action in
        switch action {
        case .increment:
            return count + 1

        case .decrement:
            return max(0, count - 1)
        }
    }

    var body: some View {
        VStack {
            Text("\(store.state)")

            HStack {
                Button(action: { self.store.dispatch(action: .decrement) }) {
                    Text("Decrement")
                }

                Button(action: { self.store.dispatch(action: .increment) }) {
                    Text("Increment")
                }
            }
        }
    }
}

? Requirements

  • Swift5.1 Beta
  • Xcode11.0 Beta
  • iOS 13.0 Beta

? License

SwiftUI-Flux is released under the MIT License.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK