Hey All,
Jetpack Compose has three primary phases during UI rendering:
1. Recomposition
2. Layout
3. Draw
While using Layout Inspector, I can only see the recomposition count for a composable. However, I want to go deeper and track how many times each phase — recomposition, layout, and draw — is triggered for a given composable and why.
The Android Studio debugger also doesn’t seem to provide much insight into the layout or draw phases. How can I track recomposition, layout, and draw counts for a composable?