user10622803
user10622803

Reputation:

Is there a downside for using flutter packages?

Does using many packages in one app effect performance or bundle size?

I’m mostly familiar with web and trying to understand more about how it is when it comes to mobile apps.

Upvotes: 3

Views: 1040

Answers (1)

CopsOnRoad
CopsOnRoad

Reputation: 268244

As long as you are using good healthy packages (like from Google/Dart team and other well maintained packages), there isn't anything you need to worry about.

There is no significant performance issue you'd notice when using more and more packages but yes the size of your app will definitely increase.

You can find the health of package on pub.dev

enter image description here

Upvotes: 7

Related Questions