
使用flutter swipper套装,如果只有1件商品,如何去除侧面图像(我标为红色)?
我已经尝试更改为viewportFraction: 1,但它的宽度更改为全宽,我不会更改大小宽度,只隐藏边图像
我代码的这一部分
Swiper(
autoplay: true,
itemBuilder: (BuildContext context,
int index) {
return InkWell(
child: Card(
margin: new EdgeInsets.only(
bottom: 30
),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius
.circular(20)
),
child: (
ClipRRect(
child: (
CachedNetworkImage(
imageUrl: dataPromo[index].bannerPath,
fit: BoxFit.fill,
)
)
)
)
),
);
},
itemCount: dataPromo.length,
viewportFraction: 0.8,
scale: 0.9,
),发布于 2021-10-19 03:19:30
您是否尝试过将viewportFraction更改为viewportFraction: 1.0
https://stackoverflow.com/questions/69624516
复制相似问题