iDecode
iDecode

Reputation: 29006

flutter pub outdated for a specific package?

When I run

flutter pub outdated 

it gives me a list of all the packages I have in pubspec.yaml which are outdated. What if I have more than 100 packages in it, I'd like to know is there any command or way (except searching in terminal) to find out the information provided by above command but only for that package, something like:

flutter pub outdated xyz

where xyz is my package.

Upvotes: 1

Views: 1496

Answers (2)

iDecode
iDecode

Reputation: 29006

For Android Studio and IntelliJ, use Flutter pub version checker

For Visual Studio Code, use Pubspec assist

Upvotes: 2

HII
HII

Reputation: 4129

There is this plugin for Android Studio called Flutter enhancement suite which automatically detects outdated packages and suggests updates for you inside pubspec.yaml file

Upvotes: 1

Related Questions