How to remove scroll glow in flutter?

16.10.2020 18:37

How to remove scroll glow in flutter?

When using a list in flutter, if you do not want to see the scroll glow when you reach the end or top of the list, you need to wrap your list in the widget below.

NotificationListener<OverscrollIndicatorNotification>(
onNotification: (overscroll) {
overscroll.disallowGlow();
return true;
},
child: SingleChildScrollView(...) // Your list widget must be in this child.
),
),