now in my home composable when i inject the same v...
# koin
b
now in my home composable when i inject the same viewmodel
Copy code
@RootNavGraph(start = true)
@Destination(
    route = Constants.NavigationRoutes.HOME
)
@Composable
fun HomeContent(){
    val mainViewModel = getViewModel<MainViewModel>()
Timber.d("MainViewmodel state ${mainViewModel.test.value} }")
}
Here i am getting null here for the test value