Flutter Pub: Expected a key while parsing a block mapping. path:

后端 未结 11 1282
死守一世寂寞
死守一世寂寞 2020-12-24 11:22

I\'m using JSON file and register in Pubspec.ymal but showing error and also when I use an image and register it, the same error also occurs. Maybe there is a f

11条回答
  •  春和景丽
    2020-12-24 12:06

    With removed comments, original, generated by default pubspec.yaml looks like this

    flutter:
      uses-material-design: true
       assets:
        - images/abc.jpg
    

    But it isn't vaild. It doesn't works. It should be:

    flutter:
      uses-material-design: true
      assets:
        - images/abc.jpg
    

    Important: Spaces are significant in YAML

提交回复
热议问题