0

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

SH EB
  • 61
  • 8

1 Answers1

0

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

chunhunghan
  • 51,087
  • 5
  • 102
  • 120