15

How can you detect mouse wheel scroll in flutter web? It seems like it would be in a gesture detector but I don't see it in there. How do list views detect mouse scroll?

phimath
  • 1,322
  • 2
  • 12
  • 22

1 Answers1

17

Wrap your ListView (or any other scroll view) with Listener and listen for PointerScrollEvent:

Listener(
  onPointerSignal: (pointerSignal){
    if(pointerSignal is PointerScrollEvent){
      // do something when scrolled
      print('Scrolled');
    }
  },
  child: ... //your scrollview here
)
Yuriy
  • 87
  • 2
  • 7
royarg
  • 511
  • 5
  • 10