Skip to content

Instantly share code, notes, and snippets.

@sturdysturge
Last active July 11, 2020 22:44
Show Gist options
  • Save sturdysturge/82cd9321c8b73145ce4a40c8602dcdb5 to your computer and use it in GitHub Desktop.
Save sturdysturge/82cd9321c8b73145ce4a40c8602dcdb5 to your computer and use it in GitHub Desktop.
RevDoc accentColor
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
//Only possible on Mac in Xcode 12
Button("Button") {
print("Button pressed")
}
.accentColor(.red)
//Possible on Mac in Xcode 11
Button(action: {
print("Button pressed")
}) {
Text("Button")
.foregroundColor(.red)
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment