Hi Team, I am planning to create a tool that will display the names of the functions from which composables were created, in real time as the user navigates through the app. So far I have not come across any libraries which can do this.
1. Radiography on github creates a tree structure for the compose hierarchy, but I am not sure it can get the name of the functions that created the composables.
2.
https://github.com/YvesCheung/UInspector this lib can get the source code information for the compose views.
The second option seems to be the most viable one. Both libraries use reflection to accesss private compose tooling methods/variables. But before I am start working on my lib, I wanted to know if there are better and easier options to get the information that I need.