flutter_carousel_slider icon indicating copy to clipboard operation
flutter_carousel_slider copied to clipboard

enlargeCenterPage | option to set the size of the center page

Open Zizico2 opened this issue 4 years ago • 1 comments

Could there be an option to set the size of the center page? Maybe a ratio above 1?

something like:

enlargeCenterPage: true,
centerPageSize: 1.4,

Zizico2 avatar Sep 22 '21 03:09 Zizico2

While this isn't in-built yet into this plugin, you could effectively achieve the same thing using the onPageChanged property inside the CarouselOptions field to track the current page. Then use your own controller or, much easier, GetX's variable.obs & Obx(() => Widget()) to shrink/grow your other pages with a Padding or AnimatedContainer widget.

kNoAPP avatar Oct 14 '21 20:10 kNoAPP