Adding a splash screen on Android flutter app am using 1024 * 1024 dimension image, also remember don't use file names with symbols but underscore "_" Copy and paste the image on to all the mipmap folder under android Next go to drawable and open launch_background.xml and uncomment image assets info Update with splash image name and source, see below: Rerun the Build, close reopen app to see the splash screen !! I like to use my own style/color ( this is optional ). Go to the values folder and create an xml file , I call it colors.xml ( New file > filename.xml ) add the xml properties on newly created file, in our case colors.xml <?xml version="1.0" encoding="utf-8" ?> and the style and color of your choice. ...
Setting up Android, iOS app icons using flutter_launcher_icons plug in Go to pub.dev to find the flutter_launcger_icons plug in. 2. Add the dependency on pubspec.yaml flutter_launcher_icons: ^0.7.5 (version varies ) If the App is in development stage you can add the dependency under dev_dependencies. and run pub get or packages get ...