Deferred components to reduce app bundle size - Flutter

Viewed 32

Whether the Deffered component in flutter reduces the app bundle size for play store upload?.

1 Answers

As the document saying

Flutter has the capability to build apps that can download additional Dart code and assets at runtime. This allows apps to reduce install apk size and download features and assets when needed by the user.

But the base apk will contain flutter lib. that will be around 9+ MB.

Related