turn off splash in flutter code example
Example 1: splash screen flutter
dependencies:
splashscreen: ^1.2.0
Example 2: Flutter how to disable splash on listview
MaterialApp(
builder: (context, child) {
return ScrollConfiguration(
behavior: MyBehavior(),
child: child,
);
},
home: new MyHomePage(),
);