<kotlinx.coroutines 1.4.0: Introducing StateFlow a...
# announcements
u
kotlinx.coroutines 1.4.0: Introducing StateFlow and SharedFlow Today we’re pleased to announce the release of version 1.4.0 of the Kotlin Coroutines library. The highlights of the release are StateFlow and SharedFlow, which are being promoted to stable API. StateFlow and SharedFlow are designed to be used in cases where state management is required in an asynchronous execution context with Kotlin Coroutines. The […]
b
Excuse my lack of knowledge in kotlin 🙂, but is this feature a (kind of) native LiveData?
a
That is correct. StateFlow can be used in a place of LiveData. Only that it is MultiPlatform