Flutter app on start it is showing white screen for few second

flutterflutter-layout

Why does my Flutter app show a white screen for few seconds on start? How do I solve this issue?

Best Answer

If you see the black window background of the activity showing until Flutter renders its first frame, add this on your AndroidManifest, between < activity> ... < /activity>

<meta-data
       android:name="io.flutter.embedding.android.SplashScreenDrawable"
   android:resource="@drawable/launch_background"
/>