SafeSavedStateHandle

value class SafeSavedStateHandle(val savedStateHandle: SavedStateHandle)

A wrapper of SavedStateHandle that provides type-safe access with NonNullSavedStateHandleKeys and NullableSavedStateHandleKeys.

Constructors

Link copied to clipboard
constructor(savedStateHandle: SavedStateHandle)

Properties

Link copied to clipboard

Functions

Link copied to clipboard
operator fun <T : Any> get(key: NonNullSavedStateHandleKey<T>): T
operator fun <T : Any> get(key: NullableSavedStateHandleKey<T>): T?

Get a value associated with the given key.

Link copied to clipboard
fun <T : Any> getStateFlow(key: NonNullSavedStateHandleKey<T>): StateFlow<T>
fun <T : Any> getStateFlow(key: NullableSavedStateHandleKey<T>): StateFlow<T?>

Returns a StateFlow that will emit the currently active value associated with the given key.

Link copied to clipboard
inline fun <T : Any> remove(key: NullableSavedStateHandleKey<T>)

Removes a value associated with the given key.

Link copied to clipboard
inline operator fun <T : Any> set(key: NonNullSavedStateHandleKey<T>, value: T)
inline operator fun <T : Any> set(key: NullableSavedStateHandleKey<T>, value: T?)

Associate the given value with the key.