Package-level declarations
Types
Simple map-like object that passed in ViewModelFactory.create to provide an additional information to a factory.
Code marked with InternalKmpViewModelApi has no guarantees about API stability and can be changed at any time.
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.
Alias for MutableCreationExtrasBuilder
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.
Mutable builder for CreationExtras.
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).
Implementations of Factory
interface are responsible to instantiate ViewModels.
Class to store ViewModel
s.
A scope that owns ViewModelStore.
Properties
Functions
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.
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.
Creates a ViewModelFactory that returns the result of invoking builder.