Reputation: 43
I can see a frame rate drops and stuttering in my flutter application while changing the views in the app. I was wondering whether it is normal or not. Also as a note i'm in the debug mode of the app.
Upvotes: 2
Views: 1829
Reputation: 657466
Hard to tell if it is normal, a problem with Flutter or a problem with your code. It doesn't make too much sense to evaluate performance in debug builds because performance characteristics are quite different to release builds.
If you actually want to evaluate performance characteristics, use a --release
or --profile
build.
Upvotes: 3