这个包在 `pubspec.yaml` 的 `dependencies` 部分没有 flutter_web_plugins
This package does not have flutter_web_plugins in the `dependencies` section of `pubspec.yaml`
添加网络支持后发布我的包时出现此错误
Package validation found the following error:
* line 9, column 1 of lib/hexcolor_web.dart: This package does not have flutter_web_plugins in the `dependencies` section of `pubspec.yaml`.
╷
9 │ import 'package:flutter_web_plugins/flutter_web_plugins.dart';
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
在你的pubspec.yaml
里面
添加这个
dependencies:
flutter:
sdk: flutter
flutter_web_plugins:
sdk: flutter
如果在 flutter sdk 中找不到 collection
(在我的例子中)
您可以将其添加为 pub.dev
中的普通软件包
dependencies:
flutter:
sdk: flutter
collection:
添加网络支持后发布我的包时出现此错误
Package validation found the following error:
* line 9, column 1 of lib/hexcolor_web.dart: This package does not have flutter_web_plugins in the `dependencies` section of `pubspec.yaml`.
╷
9 │ import 'package:flutter_web_plugins/flutter_web_plugins.dart';
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
在你的pubspec.yaml
里面添加这个
dependencies:
flutter:
sdk: flutter
flutter_web_plugins:
sdk: flutter
如果在 flutter sdk 中找不到 collection
(在我的例子中)
您可以将其添加为 pub.dev
dependencies:
flutter:
sdk: flutter
collection: