Enterprise AI Trend Report: Gain insights on ethical AI, MLOps, generative AI, large language models, and much more.
2024 Cloud survey: Share your insights on microservices, containers, K8s, CI/CD, and DevOps (+ enter a $750 raffle!) for our Trend Reports.
Technical PO at Raiffeisen Bank International
DE
Joined Sep 2023
Stats
Reputation: | 136 |
Pageviews: | 11.5K |
Articles: | 5 |
Comments: | 1 |
Comments
Oct 26, 2023 · Aleksei Pichukov
Hello, thanks for your comment. One of the points in the article is that you don't really need to use Environment to pass data through layers in the app. If you need to pass the whole ViewModel to several layers deeper in the view hierarchy, I would double-check if you planned your architecture in this part well enough. The ViewModel should be responsible only for the views it is connected with. When the view is complicated and you are splitting it into several views, you might have a case to pass the ViewModel one layer down (maybe it's better to think about separate view models or states for such cases as well), but you don't need Environment for it. In case you want to use Environment, there is no need to extend EnvironmentValues. All you need is to use the environmentObject function that takes ObservableObject as a parameter and you can have something like this:
```swift
final class ViewModel: ObservableObject { ... }
struct FirstView: View {
// You can have your viewModel injected through init or created here
...
var body: some View {
SecondView()
.environmentObject(viewModel) // <----- here you inject it
}
}
struct SecondView: View {
@EnvironmentObject var viewModel: ViewModel
...
}
```