SavedStateHandle
A multiplatform alias for androidx.lifecycle.SavedStateHandle
from the androidx.lifecycle:lifecycle-viewmodel-savedstate
library.
On Android
This is a key-value map that will let you write and retrieve objects to and from the saved state. These values will persist after the process is killed by the system and remain available via the same object.
You can read a value from it via get or observe it via StateFlow returned by getStateFlow. You can write a value to it via set.
On other platforms
This acts as a simple key-value map.
Type-safe access to SavedStateHandle
You can use SafeSavedStateHandle with NonNullSavedStateHandleKey and NullableSavedStateHandleKey to enable type-safe access to SavedStateHandle
See also
Constructors
Properties
Enables type-safe access to SavedStateHandle. You can use this with NonNullSavedStateHandleKeys and NullableSavedStateHandleKeys.
Functions
Returns a StateFlow that will emit the currently active value associated with the given key.
Returns all keys contained in this SavedStateHandle.
Enables type-safe access to SavedStateHandle. You can use this with NonNullSavedStateHandleKeys and NullableSavedStateHandleKeys.
Associate the given value with the key. On Android, the value must have a type that could be stored in android.os.Bundle. On other platforms, the value can be of any type.