【发布时间】:2021-08-01 13:31:53
【问题描述】:
我想让中心旋转木马比其他旋转木马更大
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];
});
},
),
),
这就是我想要达到的目标APP UI
【问题讨论】:
-
这个包只是将中心项目放大了一点,因为你想要中心的小部件完全是另一种形状,我认为你应该开发自己的轮播。
标签: android flutter dart carousel carousel-slider