Some of the other things you can do to make your app smaller are:
Read moreWhat is textScaleFactor in flutter?
textScaleFactor. The number of font pixels for each logical pixel . For example, if the text scale factor is 1.5, text will be 50% larger than the specified font size. The value given to the constructor as textScaleFactor.
Read moreWhat is screen Util flutter?
A flutter plugin for adapting screen and font size . Let your UI display a reasonable layout on different screen sizes! Note: This plugin is still under development, and some APIs might not be available yet.
Read moreWhat is the use of layout in Flutter class?
The layout framework allows you to create a complex user interface layout by nesting the rows and columns inside of rows and columns . Let us see an example of a complex user interface by creating the product list. For this purpose, you need first to replace the code of main.
Read moreWhat is FutureBuilder in Flutter?
In Flutter, the FutureBuilder Widget is used to create widgets based on the latest snapshot of interaction with a Future . It is necessary for Future to be obtained earlier either through a change of state or change in dependencies.
Read moreWhat is AbsorbPointer in Flutter?
AbsorbPointer is a built-in widget in flutter which absorbs pointer , in other words, it prevents its subtree from being clicked, tapped, scrolled, dragged, and respond to hover.
Read more