Created
February 17, 2021 22:04
-
-
Save karigrooms/ff756d58e98d8861f077cdeb6ab695a5 to your computer and use it in GitHub Desktop.
SwiftUI composition order of view modifiers for Lessons in SwiftUI blog post (third example)
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
import SwiftUI | |
struct ExampleView: View { | |
var body: some View { | |
Text("Hello world!") | |
.foregroundColor(.blue) | |
.foregroundColor(.black) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment