Randy ortan
Randy ortan

Reputation: 97

how will changes made to a package that i depend on affect my flutter app

I just wanted to know if my flutter app depends on a certain package and if the package has made some changes in its part how will it affect my app if I am only using one version of that package say

dependencies
    flutter_eg:3.14

Upvotes: 0

Views: 109

Answers (1)

Ali Alizadeh
Ali Alizadeh

Reputation: 705

In the case you mentioned, nothing happens and your app continues to use that exact version.

Take a look at this to learn more about dependencies version constraints

Upvotes: 1

Related Questions