Package-level declarations

Types

Link copied to clipboard

Marks declarations in the com.hoc081098.kmp.viewmodel.safe that are delicate — they have limited use-case and shall be used with care in general code.

Link copied to clipboard

Key for values stored in SavedStateHandle. The type of the value associated with this key is T (non-null)

Link copied to clipboard

Key for values stored in SavedStateHandle. The type of the value associated with this key is T? (nullable, null is valid).

Link copied to clipboard
value class SafeSavedStateHandle(val savedStateHandle: SavedStateHandle)

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

Properties

Link copied to clipboard

Functions

Link copied to clipboard
inline fun <R> SavedStateHandle.safe(block: (SafeSavedStateHandle) -> R): R

Enables type-safe access to SavedStateHandle. You can use this with NonNullSavedStateHandleKeys and NullableSavedStateHandleKeys.