isScrollingNotifier property
final
This notifier's value is true if a scroll is underway and false if the scroll position is idle.
Listeners added by stateful widgets should be removed in the widget's State.dispose method.
Implementation
final ValueNotifier<bool> isScrollingNotifier = ValueNotifier<bool>(false)