When running the FlutterFlow project in VSCode with the official extension, a dependency conflict error occurred related to the collection library.
The error indicates that:
The compra_e_venda_reciclaveis package requires version 1.19.0 of the collection library.
The flutter_localizations package, which is part of the Flutter SDK, requires version 1.19.1.
As a result, Flutter is unable to resolve the dependencies, causing the flutter pub get command to fail to execute.
๐ Possible Causes of the Error:
Outdated versions of local dependencies: The local package may not be updated to be compatible with the current version of the Flutter SDK.
Version pinning in the SDK: Flutter itself may be forcing a specific version of the collection library.
Conflict of pinned versions in the pubspec.yaml file: A dependency may have a locked version that prevents automatic updates.