I'm trying to change page in a PageView when the mouse scrolls,
I'm using a Listener following this article,
in my implementation (https://dartpad.dartlang.org/c2b24881927981575ff81367121f4e5f)
using the fabs it behave as expected:
then
prints either next
or previous
pagebut the callback in the Listener
behave weirdly :
then
prints either next
or previous
pageI'm not sure what is the cause of this behavior, any idea? Thank you
set physics property of PageView
physics: NeverScrollableScrollPhysics()
so the PageView
ignores the pointer, use the feedback picked up by Listener
move to pages