该包在“pubspec.yaml”的“dependency”部分中没有 flutter_web_plugins

G g*_*ffo 28 dart flutter flutter-web

添加网络支持后发布我的包时出现此错误

\n
Package validation found the following error:\n* line 9, column 1 of lib/hexcolor_web.dart: This package does not have flutter_web_plugins in the `dependencies` section of `pubspec.yaml`.\n    \xe2\x95\xb7\n  9 \xe2\x94\x82 import 'package:flutter_web_plugins/flutter_web_plugins.dart';\n    \xe2\x94\x82 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n
Run Code Online (Sandbox Code Playgroud)\n

G g*_*ffo 76

在你的 pubspec.yaml 里面

添加这个

dependencies:
  flutter:
    sdk: flutter
  flutter_web_plugins:
    sdk: flutter
Run Code Online (Sandbox Code Playgroud)