Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created February 19, 2020 14:48
Show Gist options
  • Save azamsharp/078b4752d0b454590a2efc7eafd2c671 to your computer and use it in GitHub Desktop.
Save azamsharp/078b4752d0b454590a2efc7eafd2c671 to your computer and use it in GitHub Desktop.
struct ContentView: View {
var body: some View {
VStack {
Text("0")
.font(.largeTitle)
Button("Increment") {
}.padding()
.background(Color.green)
.foregroundColor(Color.white)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment