jeff
12/17/2021, 4:24 PMInput
(i.e. not a MutableState), and all of the sub-composables are based on fields from Input
:
Can any of the sub-composables inside it be recomposed without recomposing the parent? If so I'd love to see an example, because I can't seem to concoct one.tad
12/18/2021, 9:52 PMState<T>
is just the explicit easy to pass around a value without causing recompositions, which is what I expect Stable to mean. Otherwise it comes down to how Input.equals
is implemented, I believe.