Muh Rahmatullah
11/20/2019, 12:12 PM@Model
is it the intended behavior to make the recomposing process only happen when the property is var? it didn’t recompose when the prop is val, for example I have property
val list: mutableList<Foo>()
and when I change the value inside the list by doing:
list.add(Foo())
the recompose process not working, but if I make it var and use
list+=Foo()
the recomposing process work