Answers for "flutter remove scroll glow"

0

flutter remove scroll glow

class MyBehavior extends ScrollBehavior {
  @override
  Widget buildViewportChrome(
      BuildContext context, Widget child, AxisDirection axisDirection) {
    return child;
  }
}



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

Code answers related to "Dart"

Browse Popular Code Answers by Language