官方文档:添加图片
1、在flutter_app根目录下创建images文件夹(放置图片文件)
2、修改pubspec.yaml文件
在flutter:下添加
assets:
- images/
3、点击Packages get、Packages upgrade
4、读取图片的时候,名称前要加images/,比如:
new Image.asset('images/veer-138877492.jpg',
height: 240,
fit: BoxFit.fill,
scale: 1.0)