kmpViewModel

inline fun <VM : ViewModel> kmpViewModel(key: String? = null, viewModelStoreOwner: ViewModelStoreOwner = defaultViewModelStoreOwner(), extras: CreationExtras = defaultPlatformCreationExtras(), savedStateHandleFactory: SavedStateHandleFactory? = LocalSavedStateHandleFactory.current, crossinline factory: @DisallowComposableCalls CreationExtras.() -> VM): VM

Returns an existing ViewModel or creates a new one in the given owner (usually, an Android fragment or an Android activity), defaulting to defaultViewModelStoreOwner.

The created ViewModel is associated with the given viewModelStoreOwner and will be retained as long as the owner is alive (e.g. if it is an Android activity, until it is finished or process is killed).

If default arguments are provided via the CreationExtras, they will be available to the appropriate factory when the ViewModel is created.

Return

A ViewModel that is an instance of the given VM type.

Parameters

factory

The lambda that will be used to create the ViewModelFactory (via rememberViewModelFactory).

viewModelStoreOwner

The owner of the ViewModel that controls the scope and lifetime of the returned ViewModel. Defaults to using defaultViewModelStoreOwner.

key

The key to use to identify the ViewModel. or null if you would like to use the default factory from the defaultViewModelStoreOwner

extras

The default extras used to create the ViewModel. Default value is defaultPlatformCreationExtras.

savedStateHandleFactory

The SavedStateHandleFactory that should be used to create the SavedStateHandle which can be passed to the ViewModel constructor. Default value is provided by LocalSavedStateHandleFactory. Usually, createSavedStateHandle will be used to create the SavedStateHandle. It will check for the existence of the SavedStateHandleFactory in the CreationExtras.

See also


expect inline fun <VM : ViewModel> kmpViewModel(factory: ViewModelFactory<VM>, viewModelStoreOwner: ViewModelStoreOwner = defaultViewModelStoreOwner(), key: String? = null, extras: CreationExtras = defaultPlatformCreationExtras(), savedStateHandleFactory: SavedStateHandleFactory? = LocalSavedStateHandleFactory.current): VM

Returns an existing ViewModel or creates a new one in the given owner (usually, an Android fragment or an Android activity), defaulting to defaultViewModelStoreOwner.

The created ViewModel is associated with the given viewModelStoreOwner and will be retained as long as the owner is alive (e.g. if it is an Android activity, until it is finished or process is killed).

If default arguments are provided via the CreationExtras, they will be available to the appropriate factory when the ViewModel is created.

Return

A ViewModel that is an instance of the given VM type.

Parameters

factory

The ViewModelFactory that should be used to create the ViewModel.

viewModelStoreOwner

The owner of the ViewModel that controls the scope and lifetime of the returned ViewModel. Defaults to using defaultViewModelStoreOwner.

key

The key to use to identify the ViewModel. or null if you would like to use the default factory from the defaultViewModelStoreOwner

extras

The default extras used to create the ViewModel. Default value is defaultPlatformCreationExtras.

savedStateHandleFactory

The SavedStateHandleFactory that should be used to create the SavedStateHandle which can be passed to the ViewModel constructor. Default value is provided by LocalSavedStateHandleFactory. Usually, createSavedStateHandle will be used to create the SavedStateHandle. It will check for the existence of the SavedStateHandleFactory in the CreationExtras.

See also

actual inline fun <VM : ViewModel> kmpViewModel(factory: ViewModelFactory<VM>, viewModelStoreOwner: ViewModelStoreOwner, key: String?, extras: CreationExtras, savedStateHandleFactory: SavedStateHandleFactory?): VM