jjthoms
jjthoms

Reputation: 43

Is it normal to see stuttering and framerate drops in the flutter application?

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

Answers (1)

Günter Zöchbauer
Günter Zöchbauer

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

Related Questions