I want to make the center Carousel Bigger than the others
CarouselSlider(
items: generateImageTiles(),
options: CarouselOptions(
enlargeCenterPage: true,
aspectRatio: 16 / 5,
viewportFraction: 0.4,
reverse: false,
initialPage: _current,
onPageChanged: (index, other) {
setState(() {
_current = index;
pizza = images[_current];
price = prices[_current];
name = names[_current];
});
},
),
),
This is what i'm trying to achieve APP UI