您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
今天就跟大家聊聊有关如何使用flutter动态加载网络图片,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
需要添加依赖包
flukit: ^1.0.0 引用 import 'package:flukit/flukit.dart'; //这一坨放在自己想要显示轮播图的地方 AspectRatio( aspectRatio:1.0,// 16.0 / 9.0, child: Swiper( indicatorAlignment: AlignmentDirectional.topEnd, circular: true, autoStart:false, indicator: NumberSwiperIndicator(),//使用的官方的 分数下标 children:AspecRaticImgs(pro.image),//这里是一个List<String>类型的参数,存放的图片Url列表 ), );
//轮播图片 class NumberSwiperIndicator extends SwiperIndicator{ @override Widget build(BuildContext context, int index, int itemCount) { if(itemCount>1){ return Container( decoration: BoxDecoration( color: Colors.black45, borderRadius: BorderRadius.circular(20.0) ), margin: EdgeInsets.only(top: 10.0,right: 5.0), padding: EdgeInsets.symmetric(horizontal: 6.0,vertical: 2.0), child: Text("${++index}/$itemCount", style: TextStyle(color: SQColor.white, fontSize: 18.0)), ); }else{ return Container(); } } } //这里我一开始用foreach循环,发现不行 会报错,说我add时用了空对象,头疼,与C#真的是大相径庭 List<Widget> AspecRaticImgs(List<String> imgUrl) { return imgUrl.map<Widget>((url){ return Image.network( url, height: 400, fit: BoxFit.cover, ); }).toList(); } List<Widget> AspecRaticImgs(List<String> imgUrl) { return imgUrl.map<Widget>((url){ return CachedNetworkImage(//这个加载更加舒服,当在加载中的时候,有一个加载进度 imageUrl: url, height: 400, fit: BoxFit.cover, placeholder: CustomWidgets.loadingPlaceHolder, errorWidget: Image.asset('images/bg_gray.png',height: 400), ); }).toList(); }
看完上述内容,你们对如何使用flutter动态加载网络图片有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注亿速云行业资讯频道,感谢大家的支持。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。