use fulutter_inappwebview how remove bounce scroll glow

113 views Asked by At

I tried using the code explained online, other listview can be removed, but using Flutter_ Inappwebview plugin, this effect cannot be removed after opening the webpage

Other answer which I followed: Here

enter image description here

What can I do? I can only remove this rolling rebound effect

1

There are 1 answers

1
RAT101 On

Wrap the widget OverscrollIndicatorNotification

NotificationListener<OverscrollIndicatorNotification>(
  onNotification: (OverscrollIndicatorNotification overscroll) {
    overscroll.disallowIndicator();

    return true;
  },
  child: <Widget Here>,
),