Skip to content

Instantly share code, notes, and snippets.

@chriseidhof
Created August 30, 2023 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chriseidhof/4fc103a9ca99a5ac733a36faead282b6 to your computer and use it in GitHub Desktop.
Save chriseidhof/4fc103a9ca99a5ac733a36faead282b6 to your computer and use it in GitHub Desktop.
OnAppearVsTask
import SwiftUI
struct ContentView: View {
@State private var color0 = Color.red
@State private var color1 = Color.red
var body: some View {
VStack {
color0
color1
}
.onAppear { color0 = .green }
.task { color1 = .green }
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment