Skip to content

Instantly share code, notes, and snippets.

@karigrooms
Created February 17, 2021 22:04
Show Gist options
  • Save karigrooms/ff756d58e98d8861f077cdeb6ab695a5 to your computer and use it in GitHub Desktop.
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)
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