Is there a way to inspect the elements on the screen (metadata, positions, etc ...) while using compose ?
In the views system this was done by recursing on the children of the activity's
DecorView
, but now using compose there's only one view added to the activity's
DecorView
which is a
ComposeView
that contains no details about the composables dawn inside. Any ideas ?
Kareem Waleed
03/22/2022, 9:05 AM
Also, is there a way to observe the changes in the composition tree ?