Property delegation to a `(Mutable)StateFlow` may ...
# coroutines
m
Property delegation to a
(Mutable)StateFlow
may be useful 🙂
Copy code
val state by someStateFlow()
…
println(state)

var foo by someMutableStateFlow()
…
state = newFoo()
7
e
easy enough
👍 1