I have a confusion regarding ViewModel scopes
I have several Fragments and each of them have their own ViewModel.
My module look like this
Copy code
module {
viewModel { ... }
...
}
My question is that whether the ViewModel is automatically scoped to the lifecycle of Fragment or not?
If not, then do I need to scope ViewModel to the Fragment like this?