ViewModelStore

actual open class ViewModelStore
expect open class ViewModelStore

Class to store ViewModels.

An instance of ViewModelStore must be retained through configuration changes: if an owner of this ViewModelStore is destroyed and recreated due to configuration changes, new instance of an owner should still have the same old instance of ViewModelStore.

If an owner of this ViewModelStore is destroyed and is not going to be recreated, then it should call clear on this ViewModelStore, so ViewModels would be notified that they are no longer used.

Use ViewModelStoreOwner.viewModelStore to retrieve a ViewModelStore for activities and fragments.

actual open class ViewModelStore

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard

Functions

Link copied to clipboard
actual fun clear()
expect fun clear()

Clears internal storage and notifies ViewModels that they are no longer used.

actual fun clear()

Clears internal storage and notifies ViewModels that they are no longer used.

Link copied to clipboard
actual operator fun get(key: String): ViewModel?
expect operator fun get(key: String): ViewModel?
actual operator fun get(key: String): ViewModel?
Link copied to clipboard
Link copied to clipboard
actual fun put(key: String, viewModel: ViewModel)
expect fun put(key: String, viewModel: ViewModel)
actual fun put(key: String, viewModel: ViewModel)
Link copied to clipboard