Skip to content

Instantly share code, notes, and snippets.

@aheze
Created June 13, 2020 03:39
Show Gist options
  • Select an option

  • Save aheze/891a24b0d249aa53abdbe9567a16e6d8 to your computer and use it in GitHub Desktop.

Select an option

Save aheze/891a24b0d249aa53abdbe9567a16e6d8 to your computer and use it in GitHub Desktop.
struct ColorView: View {
@Binding var colorRectangleIsGreen: Bool
var body: some View {
RoundedRectangle(cornerRadius: 16)
.fill(colorRectangleIsGreen ? Color.green : Color.blue)
.frame(width: 250, height: 250)
.padding()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment