Generating App Icon And Splash Screen

Generating app icon

  1. Replace the default assets/logos/android-app-icon.png  and assets/logos/io-app-icon.png files with your own. It should be 1024x1024 pixels in size for best results on high DPI screens. 
  2. Open android studio, press ALT + F12 to open a terminal window, paste the command below and press enter. This will generate all necessary versions of main icon file for both iOS and Android (You can also run this command from regular windows or macOS terminal while in bedrive flutter folder)
    flutter pub run flutter_launcher_icons:main​

Generating Splash Screen

Splash screen will appear briefly when launching the app, until it's fully loaded. To customize it:

  1. Replace the default assets/logos/splash-logo.png splash logo file with your own. It must be a png file and should be sized for 4x pixel density. Original logo is 350px width and 350px height.
  2. Open flutter_native_splash.yaml file and change default background color for light theme: #1565c0 and for dark theme: #282a2c
  3. Open android studio, press ALT + F12 to open a terminal window, paste the command below and press enter. This will generate all necessary versions of splash screen files for both iOS and Android (You can also run this command from regular windows or macOS terminal while in bedrive flutter folder) 
    flutter pub run flutter_native_splash:create