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

后端 未结 11 1279
死守一世寂寞
死守一世寂寞 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:04

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

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

    In my case i just added # in front of uses-material-design: true

    Try below code

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

    its working fine.

提交回复
热议问题