logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Flutter Pub - Manage Dart Packages | Online Free DevTools by Hexmos

Manage Dart packages easily with Flutter Pub. Add, remove, and upgrade your Flutter dependencies seamlessly. Free online tool, no registration required.

flutter-pub

Flutter’s package manager. Note: Packages are available on https://pub.dev. See also: flutter. More information: https://docs.flutter.dev/packages-and-plugins/using-packages.

  • Download/Update all packages specified in pubspec.yaml:

flutter pub get

  • Add a package dependency to an app:

flutter pub add {{package1 package2 ...}}

  • Remove a package dependency from an app:

flutter pub remove {{package1 package2 ...}}

  • Upgrade to the highest version of a package that is allowed by pubspec.yaml:

flutter pub upgrade {{package}}

See Also