In our Flutter app we tried to move implementation of several features in their own packages.
Everything is working well, but there is one thing I would like to improve.
Some features use same third party libraries => ie. there are same dependencies in the pubspec.yaml
But that also means, everytime we need to update the version of a third party library we need to do this in all packages.
Is it possible to have a central file containing all dependency versions as variables that could be used in the corresponding pubspec.yaml files?
Or maybe there is any other workaround?