我的 Pubspec.yaml 文件有问题
Having a problem with my Pubspec.yaml file
我不明白为什么会出现这个错误。一切似乎都很好。[![在此处输入图片描述][1]][1]
Error detected in pubspec.yaml:
Error on line 61, column 4: Expected a key while parsing a block mapping.
╷
61 │ assets:
│ ^
╵
Please correct the pubspec.yaml file at C:\Users\VICTOR\flutter apps\awsome_app\pubspec.yaml
exit code 1[![enter image description here][3]][3]```
[1]: https://i.stack.imgur.com/qUxuG.png
pubspec.yaml
中使用的 YAML 格式关心缩进。您的 assets:
声明后面有一个额外的 space。删除多余的 space。并确保 - assets\
也正确缩进。
VSCode 中的线条将帮助您正确对齐它们。
pubspec.yaml 是一个基于位置的脚本。 visual studio 代码中的垂直线将告诉您对齐和缩进要求。编辑器让您知道指令不正确
我不明白为什么会出现这个错误。一切似乎都很好。[![在此处输入图片描述][1]][1]
Error detected in pubspec.yaml:
Error on line 61, column 4: Expected a key while parsing a block mapping.
╷
61 │ assets:
│ ^
╵
Please correct the pubspec.yaml file at C:\Users\VICTOR\flutter apps\awsome_app\pubspec.yaml
exit code 1[![enter image description here][3]][3]```
[1]: https://i.stack.imgur.com/qUxuG.png
pubspec.yaml
中使用的 YAML 格式关心缩进。您的 assets:
声明后面有一个额外的 space。删除多余的 space。并确保 - assets\
也正确缩进。
VSCode 中的线条将帮助您正确对齐它们。
pubspec.yaml 是一个基于位置的脚本。 visual studio 代码中的垂直线将告诉您对齐和缩进要求。编辑器让您知道指令不正确