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

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"
/>

Leave a Comment