Reputation: 29006
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
Reputation: 29006
For Android Studio and IntelliJ, use Flutter pub version checker
For Visual Studio Code, use Pubspec assist
Upvotes: 2