Why does the `by` keyword not work with `mutableSt...
# compose
m
Why does the
by
keyword not work with
mutableStateListOf
?
a
The state is tracked by instance already. No need for delegate getter/setter. You already have a list instance to work with.
💯 2
1