Fixed
Status Update
Comments
il...@google.com <il...@google.com>
jb...@google.com <jb...@google.com>
ap...@google.com <ap...@google.com> #2
Since this is happening in Tink, rather than in the AndroidX library, it would be best to open an
Description
Currently,
SavedStateHandle
supports observing and setting entries withLiveData
viaSavedStateHandle.getLiveData(String key)
andSavedStateHandle.getLiveData(String key, T initialValue)
.When using
kotlinx.coroutines
, it would be nice for interoperability purposes ifSavedStateHandle
also supported observing and setting entries withMutableSharedFlow
/MutableStateFlow
(depending on if there is an initial value available and if conflation of values is desired).