scrollOverModeHide method

Widget scrollOverModeHide()

Implementation

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