这是新手,请寻求帮助。我从github上获取了一个样本,发现它已经过时了。我如何使用本地项目图像,当我单击它时,它会获得索引并传递到新页面。 TIA
CarouselSlider(
options: CarouselOptions(
height: MediaQuery.of(context).size.height/2.4,
autoPlay: true,//
viewportFraction: 1.0,
onPageChanged: (index, reason) {
setState(() {
_current = index;
});
}
),
items: map<Widget>(
foods,
(index, i){
Map food = foods[index];
return SliderItem(
img: food['img'],
name: food['name'],
);
},
).toList(),
),