I have a MutableStateFlow which is causing it's container Composable's recomposition. The MutableSta...
s
I have a MutableStateFlow which is causing it's container Composable's recomposition. The MutableStateFlow flow is indeed updating and its items are being fed to LazyColumn. Ideally, the MutableStateFlow should update LazyColumn and not it's container Composable. Any ideas on how this can be resolved?
y
the container shouldn't consume this Stateflow
k
Recomposition happens if the value from the
MutableStateFlow
is being read inside your container composable