Daichi Fujita
Daichi Fujita
Thank you for your reporting! I cannot reproduce the problem. Could you let me know on which device are you reproducing? Videos and snapshots would also be helpful.
Oh, sorry, I missed the title. Do you mean the problem that occurs on the desktop or on a desktop browser?
I have watched the video and confirmed that I can reproduce the problem. The cause of the problem is that when scrolling with the mouse wheel, `ScrollPosition.setPixels` is not called....
It seems that when scrolling the list view with a mouse, `setPixels` is not called, instead [pointerScroll](https://api.flutter.dev/flutter/widgets/ScrollPosition/pointerScroll.html) and eventually `forcePixels` is called to change the current scroll position.
> I noticed that when you are using the showModalExprollable function, the "grow on scroll" animation snaps to ViewportInset.expanded This is because [the pointerScroll method tells the scroll physics to...
Adding the following code to the `AbsorbScrollPosition` class partially solved this issue. But there is still another problem related to the snapping behavior that the page view rattles as it...
I decided to implement the landscape mode that is mentioned in #47. This will disable the expanding/shrinking page animation in landscape mode, which won't fix the problem, but it will...
Basically it works, but there is a hit test problem where even if the size of an overflowbox is larger than its parent, the clickable area of the box is...
With the current implementation, there are 2 problems that must be solved before we can provide the option to always allow the pagination: - the snap effect is not smooth...
> enlarge(expand) the card by tapping the card You can use `ExprollablePageController. animateViewportInsetTo` to enlarge your card with animation. An example code is available [here](https://github.com/fujidaiti/exprollable_page_view/blob/master/example/lib/src/animation_example.dart). > I try to set...