Flutter 图片加载报错:Unable to load asset: xxx.png 解决方法

工程中的代码:
Container(decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage('images/1.png'),
fit: BoxFit.cover),
)

Flutter 图片加载报错:Unable to load asset: xxx.png 解决方法_第1张图片

 

附录flutter官方提供的加载asset资源例子:

https://github.com/nisrulz/flutter-examples/tree/master/load_local_image


不知道什么原因,导致写的解决方案内容不完整。现在补充下。。。

1.代码中的图片相对路径要和工程中实际路径一致。eg. 项目flutter_starve/images/1.png,引用路径:AssetImage('images/1.png')

2.pubspec.yaml中书写不规范。不规范的缩进和字符都可能导致配置的内容不生效。要注意yaml的一个缩进是2个空格,不要用tab或4个空格。横杠后面是一个空格。请参考下图

Flutter 图片加载报错:Unable to load asset: xxx.png 解决方法_第2张图片

 

 

 

 

 

 

 

 

 

你可能感兴趣的:(Flutter)