scrollOverModeHide method
Implementation
Widget scrollOverModeHide() {
if (this is NotificationListener) {
return this;
}
return NotificationListener<OverscrollIndicatorNotification>(
onNotification: (OverscrollIndicatorNotification overScroll) {
overScroll.disallowIndicator();
return true;
},
child: this,
);
}