Created
January 27, 2024 14:39
-
-
Save edelabar/b07311be9bb9d024925843753101887b to your computer and use it in GitHub Desktop.
This file contains 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 MyView: View { | |
@State var dep1 = ... | |
@State var dep2 = ... | |
@State var cachedProperty = ... | |
var body: some View { | |
SomeView() | |
.task(id: "\(dep1)-\(dep2)") { | |
// Do expensive calculations... | |
cachedProperty = ... | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment