Do you guys think that Jetpack Compose will change...
# android-architecture
z
Do you guys think that Jetpack Compose will change current architecture patterns or introduce some new?
g
For sure
2
Probably ones who use MVI or other unidirectional data flow architectures will migrate more easy than other
Not sure about new, depends on what you consider as new
z
I don't know. Have been watching a lot around MVVM, MVI,... lately, but I'm worried now that will become obsolete soon.
g
MVI should work perfectly with Compose
e
MVVM should work fine with compose, doesn't it?
g
I believe you can use any architecture with some modifications
usually MVVM is mutable and have some bindings between VM and View
but you don’t need bindings in case of Compose
also to use mutable model you need special
@Model
state to notify Compose that something is changed