我正在使用 carousel_slider 颤动插件。我想减少“项目”小部件之间的空间。这是我的代码:
CarouselSlider(
options: CarouselOptions(
enableInfiniteScroll: false,
initialPage: 0,
height: screenHeight * 0.35,
enlargeCenterPage: true,
viewportFraction: 0.85
),
items: <Widget>[
Container(
padding: EdgeInsets.all(0),
color: Colors.blue,
),
Container(
padding: EdgeInsets.all(0),
color: Colors.blue,
)
],
)
Run Code Online (Sandbox Code Playgroud)
这就是我得到的: