flutter 加载本地图片之错误

flutter:

  

  uses-material-design: true

   

   assets:

    - images/loading.jpg

 

显示错误

Error detected in pubspec.yaml:

Expected "uses-material-design" to be a bool, but got true

assets: - images/loading.jpg (String).

Please correct the pubspec.yaml file at D:\wang\demo2\lib\wechat\pubspec.yaml

exit code 1

 

 

更改了之后

flutter:

  uses-material-design: true

  assets:

  - images/loading.jpg

 

 

错误就变了

 

Error detected in pubspec.yaml:

Error on line 19, column 3: Expected ':'.

   ╷

19 │   - images/loading.jpg

   │   ^

   ╵

Please correct the pubspec.yaml file at D:\wang\demo2\lib\wechat\pubspec.yaml

exit code 1

我的天哪,无语了  救救孩子吧

 

https://blog.csdn.net/ulddfhv/article/details/90386013

看看是不是这种情况

我也是这种报错,“-”和“images"中间加空格就好了,不知道是不是这个原因。