launch_background.xml color to hex color

554 Views Asked by At

I want to make my splash screen using flutter framework all I want to do is to change the splash screen color form white to 003A55 in Hex enter image description here

1

There are 1 best solutions below

0
On

You can use package https://pub.dev/packages/flutter_native_splash
Step 1: In pubspec.yaml add setting

dev_dependencies:
  flutter_test:
    sdk: flutter
  flutter_native_splash: any

flutter_native_splash:
  color: 003A55

Step 2: run command flutter pub run flutter_native_splash:create

enter image description here

working demo

enter image description here