0

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

Muhammad Hussain
  • 966
  • 4
  • 15

1 Answers1

0

Wrap the widget OverscrollIndicatorNotification

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

    return true;
  },
  child: <Widget Here>,
),
RAT101
  • 26
  • 1
  • 6