Answers for "Flutter how to disable splash on listview"

0

Flutter how to disable splash on listview

MaterialApp(
  builder: (context, child) {
    return ScrollConfiguration(
      behavior: MyBehavior(),
      child: child,
    );
  },
  home: new MyHomePage(),
);
Posted by: Guest on April-17-2020
0

Flutter how to disable splash on listview

class MyBehavior extends ScrollBehavior {
  @override
  Widget buildViewportChrome(
      BuildContext context, Widget child, AxisDirection axisDirection) {
    return child;
  }
}
Posted by: Guest on April-08-2020

Code answers related to "Flutter how to disable splash on listview"

Code answers related to "Dart"

Browse Popular Code Answers by Language