Created
June 13, 2020 03:39
-
-
Save aheze/891a24b0d249aa53abdbe9567a16e6d8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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