Created
April 3, 2021 16:38
-
-
Save lammertw/8ea9c1fc9fd3432ea5f7e020c2b0952e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct ContentView: View { | |
@EnvironmentObject var counter: ObservableCounter | |
var body: some View { | |
VStack { | |
Text("Current count: \(counter.count)") | |
Button("Increment", action: { counter.increment() }) | |
} | |
.padding() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment