I was looking at my app’s method trace for somethi...
# compose
t
I was looking at my app’s method trace for something, and noticed compose methods are sometimes getting called twice. Is this because of the recomposition? Is it normal to have duplicate calls like this?
a
The graph is showing nested calls, meaning that the method below is called in the method above, so they are not duplicate calls.
To answer your question, yes it's totally normal and has nothing to do with recomposition.