Links

Hilt integration

To use the getViewModel you should first import cafe.adriel.voyager:voyager-hilt (see Setup).

@Inject

Add @HiltViewModel and @Inject annotations to your ViewModel.
@HiltViewModel
class HomeViewModel @Inject constructor() : ViewModel() {
// ...
}
Call getViewModel() to get a new instance.
class HomeScreen : AndroidScreen() {
@Composable
override fun Content() {
val screenModel = getViewModel<HomeScreenModel>()
// ...
}
}

@AssistedInject

Currently there's no Assisted Injection support for Hilt ViewModels (issue).

Sample

Sample code here.