found this <great talks> from Luca Nicoletti, the ...
# orbit-mvi
m
found this

great talks

from Luca Nicoletti, the sample shown using orbit earlier version with alpha version of jetpack compose Stocklist, Post &amp; Calculator seems using Views, cmiiw if there’s a sample on v3.1.1 using Jetpack Compose already that I’m not aware of 🙏
m
No sample yet, it’s on our to-do list 🙂
There’s not much to it though, you use
Container.stateFlow.consumeAsState()
✍️ 1
the rest really is up to compose
a
I’m creating the sample at the moment, although as mikolaj mentions consuming it isn’t much of a problem. Converting the whole of the UI to Compose is taking me the time 🤣
m
niceee, will check it out!
Agreed, migrating the old Views to Jetpack Compose was the time consuming 😆
a
I just played with uniflow myself today, what was your impression @miqbaldc?
m
IMHO, The
uniflow
maintainer seems a bit outdated atm. Also it's seems not KMM ready due to coupled with
LiveData
afaik.
Didn't catch up with the library in this few months.
Their documentation (README) & samples was good for starter (they forked official jetpack composs) Also the parallel or multiple stream supported by their API
a
Yeah the docs are nice, very easy to follow. It’s something we’re looking to improve on ourselves. At the moment @Mikolaj Leszczynski is working on publishing what we’ve got to a better looking website but there are no doubt plenty of things missing too.
🙏 1
👍 1
❤️ 1
Not sure how I feel about multiple streams! It’s too easy to slip back into the pattern of these being tightly coupled as they often were when using live data in MVVM in the first place, but perhaps I’m missing something.