Hi, How can I get the rendering cost of the Compo...
# compose
n
Hi, How can I get the rendering cost of the Composable ?
g
Will usual profiling tools help?
n
How get TTI(Time to Interactive),FP ...
We need to count this time
g
Ah yeah, makes sense 👍 join to the question
n
@Adam Powell Do you have any suggestions 🙏
a
Copy code
LaunchedEffect(Unit) {
  withFrameNanos {}
  // this line after the empty call above resumes after the first frame where this effect is composed is drawn
}
👍 2
Also https://ui.perfetto.dev for visualizing it
🙌 1
n
Thx 🎉 👍