我不知道如何使用或在哪里使用旋转木马滑块下面的文字图像。
return Scaffold(
body: ListView(
children: [
CarouselSlider(
items: [
Container(
margin: EdgeInsets.all(10),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(10),
image: DecorationImage(
image: NetworkImage('assets/images/phone.jpg'))),
),
],
options: CarouselOptions(
height: 300,
enlargeCenterPage: true,
autoPlay: true,
aspectRatio: 16 / 9,
autoPlayCurve: Curves.fastOutSlowIn,
enableInfiniteScroll: true,
autoPlayAnimationDuration: Duration(seconds: 1),
viewportFraction: 0.8,
),
)
],
),
);
我已经尝试了上面的代码,但它现在显示我的任何图像,我感到困惑,从哪里我需要开始添加文本。
1条答案
按热度按时间hs1rzwqc1#
您需要将Container替换为Column才能达到相同的效果。
由此:
致: