1.Image.asset 本地图片
(1).需要 images文件夹 下建立 2x 3x 文件夹
(2),在pubspec.yaml下配置
assets:
- images/2.0x/fx_03.png
- images/3.0x/fx_03.png
(3) 加载 ,如果加载不出来 重新运行
//新的可以这么配置
(1)在pubspec.yaml下配置
assets:
- images/
(2) 图片导入images,然后直接用就可以
2.image.network 远程图片
属性:fit color
3.实现圆角图片
(1).container 组件 + decoration 中的 borderRedius + image属性
image: DecorationImage(image:NetworkImage("xxx"),fit: BoxFit.cover)
(2).使用外部套个 ClipOval 组件
网友评论