A VSCode extension to browse, search, and add pub.dev packages directly in your Flutter project.
- Browse popular Flutter packages from pub.dev
- Search for specific packages
- View package details including version history
- Add packages to your Flutter project with one click (
flutter pub add) - View and manage currently installed packages
- Upgrade to the latest versions of the installed packages with one click.
- Remove a package from your project with one click (
flutter pub remove)
The package is available in VSCode marketplace, you can directly install using this link. For other IDEs, you can download using OpenVSX link.
![]() |
![]() |
![]() |
![]() |
| Package List | Package Details | Browse Packages | Install Package |
- Open the Pub Explorer panel from the Activity Bar (package icon)
- Browse the default list of Flutter packages or search for specific ones
- Click "flutter pub add" to add a package to your project
- Click "Details" to view more information and select specific versions
- Switch to the "Installed" view to manage your current project dependencies
- Upgrade to the latest versions of the installed packages with one click.
- Remove a package from your project with one click (
flutter pub remove)
- Flutter SDK installed and available in PATH
- A Flutter project open in VS Code
- Clone this repository
- Run
npm installto install dependencies - Run
npm run compileto build the extension - Press F5 to run the extension in development mode
# Install dependencies
npm install
# Compile TypeScript
npm run compile
# Watch for changes
npm run watch
# Package the extension
npx vsce package


