I've added navigation animation to my project, and...
# compose
k
I've added navigation animation to my project, and all my heavy computations that I could find are done on IO dispatcher, however, navigation animation still has little stutter during initial animation. Any tips on how to avoid this?
z
Not really without seeing your code, but a common gotcha is that any state initialized after the initial composition (eg in an effect) will only be rendered on the second frame.