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 formatting mistake in it, but don't know what the problem is.this is the doc I followed.
Error on line 29, column 5 of pubspec.yaml: Expected a key while parsing a block mapping. assets: ^
This is my pubspec.yaml
file
name: jsondata description: A new Flutter application. dependencies: flutter: sdk: flutter cupertino_icons: ^0.1.0 dev_dependencies: flutter_test: sdk: flutter flutter: uses-material-design: true assets: - loadjson/person.json
Spaces are significant in YAML
assets
is indented too far
flutter_test: sdk: flutter flutter: uses-material-design: true assets: - loadjson/person.json
It is because of the indentation of your code.The uses-material-design
should be on the same line vertically as the assets:
.
uses-material-design: true assets: - images/picture.png
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With