Hello there,
is there a way to configure the PageView so that the page change is not animated with a linear curve but more bouncy? Especially when a page snaps to its final position (drag ended). I can achieve the effect when triggering a page change via click on a button with:
IconButton(
icon: Icon(Icons.fast_rewind),
onPressed: () {
pageController.previousPage(
duration: const Duration(milliseconds: 800),
curve: Curves.elasticOut,
);
},
),
Unfortunately this doesn't work for the drag/scroll behaviour.
Any hint/idea on how to do it would be highly appreciated.
Cheers,
Sekib