[Recomposition - optimization] Is there an easy wa...
# compose
c
[Recomposition - optimization] Is there an easy way to tell which States change triggered the recomposition in compose? I have a pretty complicated screen with multiple potentially changing states, which causes the screen to update multiple times in a second even if the displayed data is seemingly unchanged. I found this Composition count logger in the Tivi app, but that only tells if a Composable was recomposed. https://github.com/chrisbanes/tivi/blob/main/common-ui-compose/src/main/java/app/tivi/common/compose/Debug.kt#L40
5