flutter splash screen animation example
Example 1: splash screen flutter
dependencies:
splashscreen: ^1.2.0
Example 2: Flutter how to disable splash on listview
class MyBehavior extends ScrollBehavior {
@override
Widget buildViewportChrome(
BuildContext context, Widget child, AxisDirection axisDirection) {
return child;
}
}