with `ViewModel` and `Hilt`. if I have `@Composabl...
# compose
m
with
ViewModel
and
Hilt
. if I have
@Composable
with
ViewModel
parameter as
viewModel: MyViewModel = hiltViewModel()
and I create that
@Composable
as navigation destinations without passing the
ViewModel
to it, will it be scoped to correct
NavBackStackEntry
?
l
yes
m
thanks