koinViewModelFactory
Create a ViewModelFactory for the given VM type, which creates the VM by getting it from the given Koin scope with the given qualifier and parameters.
SavedStateHandle will be created and passed to the constructor of VM if it's requested. CreationExtras passed to ViewModelFactory.create will be passed to the constructor of VM if it's requested.
Example
class MyRepository
class MyViewModel(
val myRepository: MyRepository,
val savedStateHandle: SavedStateHandle,
val id: Int,
) : ViewModel()
val myModule = module {
factoryOf(::MyRepository)
factoryOf(::MyViewModel)
}
val factory = koinViewModelFactory<MyViewModel>(
scope = KoinPlatformTools.defaultContext().get().scopeRegistry.rootScope,
parameters = { parametersOf(1) },
)
Parameters
The type of the ViewModel to create.
The Koin Scope to get the ViewModel from.
The Koin Qualifier to get the ViewModel with.
The Koin ParametersDefinition to get the ViewModel with.
See also
Create a ViewModelFactory for the given viewModelClass, which creates the VM by getting it from the given Koin scope with the given qualifier and parameters.
SavedStateHandle will be created and passed to the constructor of VM if it's requested. CreationExtras passed to ViewModelFactory.create will be passed to the constructor of VM if it's requested.
Example
class MyRepository
class MyViewModel(
val myRepository: MyRepository,
val savedStateHandle: SavedStateHandle,
val id: Int,
) : ViewModel()
val myModule = module {
factoryOf(::MyRepository)
factoryOf(::MyViewModel)
}
val factory = koinViewModelFactory(
viewModelClass = MyViewModel::class,
scope = KoinPlatformTools.defaultContext().get().scopeRegistry.rootScope,
parameters = { parametersOf(1) },
)
Parameters
The Koin Scope to get the ViewModel from.
The Koin Qualifier to get the ViewModel with.
The Koin ParametersDefinition to get the ViewModel with.