Package-level declarations

Types

Link copied to clipboard
actual typealias Closeable = java.io.Closeable
expect fun interface Closeable
actual fun interface Closeable
actual typealias Closeable = java.io.Closeable
actual fun interface Closeable
Link copied to clipboard
expect abstract class CreationExtras

Simple map-like object that passed in ViewModelFactory.create to provide an additional information to a factory.

actual abstract class CreationExtras
Link copied to clipboard
expect interface CreationExtrasKey<T>

Key for the elements of CreationExtras. T is a type of an element with this key.

actual interface CreationExtrasKey<T>
Link copied to clipboard
Link copied to clipboard

Code marked with InternalKmpViewModelApi has no guarantees about API stability and can be changed at any time.

Link copied to clipboard

Denotes that the annotated method should only be called on the main thread. If the annotated element is a class, then all methods in the class should be called on the main thread.

Link copied to clipboard

With Kotlin 1.9.20, an expect with default arguments are no longer permitted when an actual is a typealias (see KT-57614), we cannot use actual typealias MutableCreationExtras = androidx.lifecycle.viewmodel.MutableCreationExtras. So we have to use wrapper class instead.

expect class MutableCreationExtrasBuilder(initialExtras: CreationExtras = EmptyCreationExtras)

Mutable builder for CreationExtras.

Link copied to clipboard
actual abstract class ViewModel : ViewModel
expect abstract class ViewModel

The ViewModel class is a business logic or screen level state holder. It exposes state to the UI and encapsulates related business logic. Its principal advantage is that it caches state and persists it through configuration changes (on Android).

actual abstract class ViewModel
Link copied to clipboard

Implementations of Factory interface are responsible to instantiate ViewModels.

Link copied to clipboard
actual open class ViewModelStore
expect open class ViewModelStore

Class to store ViewModels.

actual open class ViewModelStore
Link copied to clipboard

A scope that owns ViewModelStore.

Properties

Link copied to clipboard
actual val VIEW_MODEL_KEY: Key<String>
expect val VIEW_MODEL_KEY: Key<String>

A CreationExtrasKey to get a key associated with a requested ViewModel from CreationExtras.

actual val VIEW_MODEL_KEY: Key<String>

Functions

Link copied to clipboard
inline fun buildCreationExtras(initialExtras: CreationExtras = EmptyCreationExtras, builderAction: MutableCreationExtrasBuilder.() -> Unit): CreationExtras

Builds a CreationExtras by populating a MutableCreationExtrasBuilder using the given builderAction. initialExtras will be copied into the resulting MutableCreationExtrasBuilder first. Then the builderAction will be applied to the MutableCreationExtrasBuilder.

Link copied to clipboard

Edits this CreationExtras by populating a MutableCreationExtrasBuilder using the given builderAction. Content of this CreationExtras will be copied into the resulting MutableCreationExtrasBuilder first. Then the builderAction will be applied to the MutableCreationExtrasBuilder.

Link copied to clipboard
Link copied to clipboard
inline fun <VM : ViewModel> viewModelFactory(crossinline builder: CreationExtras.() -> VM): ViewModelFactory<VM>
inline fun <VM : ViewModel> viewModelFactory(viewModelClass: KClass<VM>, crossinline builder: CreationExtras.() -> VM): ViewModelFactory<VM>

Creates a ViewModelFactory that returns the result of invoking builder.