koinViewModelFactory

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.

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

VM

The type of the ViewModel to create.

scope

The Koin Scope to get the ViewModel from.

qualifier

The Koin Qualifier to get the ViewModel with.

parameters

The Koin ParametersDefinition to get the ViewModel with.

See also


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.

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

viewModelClass

The KClass of the ViewModel to create.

scope

The Koin Scope to get the ViewModel from.

qualifier

The Koin Qualifier to get the ViewModel with.

parameters

The Koin ParametersDefinition to get the ViewModel with.

See also