Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

This package does not have flutter_web_plugins in the `dependencies` section of `pubspec.yaml`

When publishing my package after adding web support i got this error

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';
    │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
like image 376
griffins Avatar asked Aug 31 '25 22:08

griffins


1 Answers

inside your pubspec.yaml

add this

dependencies:
  flutter:
    sdk: flutter
  flutter_web_plugins:
    sdk: flutter
like image 131
griffins Avatar answered Sep 04 '25 14:09

griffins