julioromano
06/07/2023, 3:04 PMMutableState
to prevent its observers to be notified? I'm thinking of this in order to avoid double binding loops (i.e. when updating some state from inside the composable I don't want the observers of that state to be triggered to avoid loops).
I know what I'm asking is not very compose-style but I'm compose-wrapping a View
and need to hoist some of its internal state to the compose world, so I guess this is kind of a special case.Loney Chou
06/07/2023, 4:26 PMSnapshot.withoutReadObservation { /* ... */ }