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

  • Post author:
  • Post category:其他


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

附录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个空格。横杠后面是一个空格。请参考下图



版权声明:本文为wushengnuan原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。