Flutter Web: first screen loading

Viewed 606

It takes 10 seconds for him to be on the splash page. How to optimize the first screen loading speed of Flutter on the web platform?

1 Answers
  • If you're using an image on the first page, it might take some time to load if that image is a high-resolution one. So try to reduce the image quality and reduce the image size.
  • Use this link for flutter performance best practices - https://flutter.dev/docs/perf/rendering/best-practices
Related