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
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.