如何解决如何从 API 中获取 json 数据并在 Flutter 中显示到轮播?
CarouselSlider(
options: CarouselOptions(
height: MediaQuery.of(context).size.height * 0.30,autoplay: true,autoplayInterval: Duration(seconds: 3),autoplayAnimationDuration: Duration(milliseconds: 800),autoplayCurve: Curves.fastOutSlowIn,pauseAutoplayOnTouch: true,aspectRatio: 2.0,onPageChanged: (index,reason) {
setState(() {
_currentIndex = index;
});
},),items: cardList.map((card) {
return Builder(builder: (BuildContext context) {
return Container(
height: MediaQuery.of(context).size.height * 0.40,width: MediaQuery.of(context).size.width,child: Card(
color: Colors.blueAccent,child: card,);
});
}).toList(),List<T> map<T>(List list,Function handler) {
List<T> result = [];
for (var i = 0; i < list.length; i++) {
result.add(handler(i,list[i]));
}
return result;
}
这是我的滑块的静态代码,它采用 cardList。 cardList 是 Card 类型的 List。 map 函数的定义如代码所示。我无法弄清楚如何将响应转换为可在此代码中使用的格式。
请帮帮我。提前致谢。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。