Property delegation to a `(Mutable)StateFlow` may be useful :slightly_smiling_face: ```val state by...
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