'How to customize the carousel_slider in flutter?

I'm trying to customize the carousel_slider package. The expected output should be like this:

enter image description here

But right now, I have an output like this:

enter image description here

I want to hide the right side of the previous image behind the current image and the left side of the next image behind the current image. I wrote CarouselOptions properties like this:

CarouselOptions(
    aspectRatio: 2,
    enlargeCenterPage: true,
    viewportFraction: 0.60,
    enlargeStrategy: CenterPageEnlargeStrategy.scale,
),

Any help would be appreciated.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source