kmpViewModel
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
Parameters
The lambda that will be used to create the ViewModelFactory (via rememberViewModelFactory).
The owner of the ViewModel that controls the scope and lifetime of the returned ViewModel. Defaults to using defaultViewModelStoreOwner.
The key to use to identify the ViewModel. or null if you would like to use the default factory from the defaultViewModelStoreOwner
The default extras used to create the ViewModel. Default value is defaultPlatformCreationExtras.
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
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
Parameters
The ViewModelFactory that should be used to create the ViewModel.
The owner of the ViewModel that controls the scope and lifetime of the returned ViewModel. Defaults to using defaultViewModelStoreOwner.
The key to use to identify the ViewModel. or null if you would like to use the default factory from the defaultViewModelStoreOwner
The default extras used to create the ViewModel. Default value is defaultPlatformCreationExtras.
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.