flutter_carousel_slider
flutter_carousel_slider copied to clipboard
enlargeCenterPage | option to set the size of the center page
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,
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.