Reputation: 2124
When I run flutter app it delays for few seconds shows just white screen and then the main page is shown. How can i fix it
Upvotes: 0
Views: 2630
Reputation: 5605
There is an entry in the docs about the launch screen.
https://flutter.io/docs/development/ui/assets-and-images#updating-the-launch-screen
Basically you can provide an image to be shown while flutter loads. The framework is not ready at that point though, so this is done on the platform side.
Upvotes: 2