Files
GitJournal/lib/widgets/scroll_view_without_animation.dart
2020-09-03 21:50:23 +02:00

26 lines
617 B
Dart

import 'package:flutter/material.dart';
class ScrollViewWithoutAnimation extends StatelessWidget {
final Widget child;
final Axis scrollDirection;
ScrollViewWithoutAnimation({
@required this.child,
this.scrollDirection,
});
@override
Widget build(BuildContext context) {
return NotificationListener<OverscrollIndicatorNotification>(
onNotification: (OverscrollIndicatorNotification overScroll) {
overScroll.disallowGlow();
return false;
},
child: SingleChildScrollView(
scrollDirection: scrollDirection,
child: child,
),
);
}
}