首页 > 解决方案 > 这个包在 pubspec.yaml 的 `dependencies` 部分没有flutter_web_plugins

问题描述

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

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';
    │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

标签: flutterdartflutter-web

解决方案


在您的 pubspec.yaml 中

添加这个

dependencies:
  flutter:
    sdk: flutter
  flutter_web_plugins:
    sdk: flutter

推荐阅读