首页 > 解决方案 > 解析块映射时需要一个键

问题描述

在 pubspec.yaml 中检测到错误:

 Error on line 48, column 4: Expected a key while parsing a block mapping.

pubspec.yaml:

flutter:
 uses-material-design: true
  assets:
 - images/googlelogo.png

标签: mapping

解决方案


正如您在评论中提到的那样,缩进在 pubspec.yaml 文件中很重要。它应该是这样的:


flutter:
  uses-material-design: true
  assets:
    - images/googlelogo.png


推荐阅读