Package-level declarations
Functions
Link copied to clipboard
inline fun <VM : ViewModel> koinViewModelFactory(scope: Scope, qualifier: Qualifier? = null, noinline parameters: ParametersDefinition? = null): ViewModelFactory<VM>
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.
fun <VM : ViewModel> koinViewModelFactory(viewModelClass: KClass<VM>, scope: Scope, qualifier: Qualifier? = null, parameters: ParametersDefinition? = null): ViewModelFactory<VM>
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.