Skip to content

Instantly share code, notes, and snippets.

@apatronl
Created June 24, 2020 22:53
Show Gist options
  • Save apatronl/e3d4617e50b1127a322c4c04a419c95d to your computer and use it in GitHub Desktop.
Save apatronl/e3d4617e50b1127a322c4c04a419c95d to your computer and use it in GitHub Desktop.
import SwiftUI
struct ContentView: View {
@State private var selectedColor = Color.black
var body: some View {
VStack(alignment: .center) {
Text("Color Picker Demo").foregroundColor(selectedColor).font(.largeTitle)
ColorPicker(
"Pick a color",
selection: $selectedColor
).frame(width: 150, height: 150)
Spacer()
}.padding(.vertical, 70)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment