In Flutter
, I found many animations for PageView
children, but I can't find any library for implementing below video in flutter.
You can see a simple video on this link
Which library can I use to achieve that?
In Flutter
, I found many animations for PageView
children, but I can't find any library for implementing below video in flutter.
You can see a simple video on this link
Which library can I use to achieve that?
PageView(
controller: _pageController,
children: <AnimatedBuilder>[
for (int i = 0; i < _numberOfYourChildren; i++)
AnimatedBuilder(
animation: _pageController,
builder: (BuildContext context, Widget? child) {
return Transform.scale(
scale: _pageController.position.haveDimensions ? max(0.9, (1 - ((_pageController.page! - i).abs() / 2))) : 1.0,
child: YourChild(),
);
}),
],
)
You can play with max(0.9, (1 - ((_pageController.page! - i).abs() / 2)))
to your liking.
I add an Example ... this is Work .. when user starting to change page the page scaled down and when user Changed page ... scale to 1
Edit
I add animation to above code