i am new to compose.. is there any library or comp...
# compose-desktop
n
i am new to compose.. is there any library or component for updating UI from a
Store<T>
or
Store<List<T>>
type? i have only used something similar in fritz2 but.. if i want to build a desktop UI,might as well check if i can do it "right" or in other words.. can i render a
StateFlow<T>
and have the UI rebuild as as the value changes ?
z
stateFlow.collectAsState()
👍 1