regarding about `@Model` is it the intended behavi...
# compose
m
regarding about
@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
Copy code
val list: mutableList<Foo>()
and when I change the value inside the list by doing:
Copy code
list.add(Foo())
the recompose process not working, but if I make it var and use
Copy code
list+=Foo()
the recomposing process work