pubspec.yaml 的第 21 行第 5 列出错
Error on line 21, column 5 of pubspec.yaml
问题描述
我正在尝试将 http 包安装到我的 flutter 项目中,但是我不知道为什么会出现此错误
"Error on line 21, column 5 of pubspec.yaml: A dependency may only
have one source.".
文件:pubspec.yaml
错误
您在错误的地方添加了依赖项。 spacing/indentation 很重要。
该依赖项应与 cupertino_icons
和 flutter
依赖项处于同一缩进级别。
dependencies:
flutter:
sdk: flutter
cupertino_icons: ^0.1.2
http: ^0.12.0+4
问题描述
我正在尝试将 http 包安装到我的 flutter 项目中,但是我不知道为什么会出现此错误
"Error on line 21, column 5 of pubspec.yaml: A dependency may only have one source.".
文件:pubspec.yaml
错误
您在错误的地方添加了依赖项。 spacing/indentation 很重要。
该依赖项应与 cupertino_icons
和 flutter
依赖项处于同一缩进级别。
dependencies:
flutter:
sdk: flutter
cupertino_icons: ^0.1.2
http: ^0.12.0+4