kojectKmpViewModel
inline fun <VM : ViewModel> kojectKmpViewModel(viewModelStoreOwner: ViewModelStoreOwner = defaultViewModelStoreOwner(), key: String? = null, extras: CreationExtras = defaultPlatformCreationExtras(), savedStateHandleFactory: SavedStateHandleFactory? = LocalSavedStateHandleFactory.current, qualifier: Any? = null): VM
Returns an existing ViewModel or creates a new one by Koject
.
@Composable
fun TopPage(
viewModel: TopViewModel = kojectKmpViewModel()
) {
/* ... */
}
Content copied to clipboard
Parameters
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.
extras
The default extras used to create the ViewModel.
savedStateHandleFactory
The factory to create SavedStateHandle for the ViewModel.
qualifier
Qualifier for identification.