Some of the other things you can do to make your app smaller are:
Read moreHow do you change the screen size on Flutter?
How To get Flutter screen size
Read moreWhat is widget build?
A widget’s main job is to implement a build() function, which describes the widget in terms of other, lower-level widgets . The framework builds those widgets in turn until the process bottoms out in widgets that represent the underlying RenderObject , which computes and describes the geometry of the widget.
Read moreWhat is builder widget?
A builder function is a Flutter design pattern in which widgets provide a callback interface to the widget tree with dynamic (often layout-specific) parameters .
Read moreWhat is widget layout?
Layout Widget. The Layout Widget is a responsive container that allows you to separate a responsive container into sections . Layouts can be placed inside the responsive containers of other layouts to create more even sections.
Read moreIs flutter responsive by default?
This eliminates the need to manually adapt layouts to mobile, tablet, and desktop. Flutter’s default behavior is resize which Responsive Framework respects . AutoScale is off by default and can be enabled at breakpoints by setting autoScale to true .
Read more