flutterdartmobileresponsiveportrait

Flutter responsive design when App supports only Mobile devices portrait mode(No web, tablet, desktop support)


We are going to develop a mobile app using flutter. This app supports only mobile devices and only portrait mode.

How to make the app works on all mobile devices with less amount of effort.

I have read some tutorials about Layout Builder, Aspect Ratio, Orientation builder. But I feel they will be very much helpful when we are going to support multiple platforms like web, Desktop, Mobile landscape mode.

Since my app supports only portrait mode(Mobile). Do we have any tricks to make the app responsive in less amount of time?


Solution

  • It does not matter your app supports only portrait mode on Mobile. You still need a responsive design for different sized mobile phones. As you answered yourself, you can use the following properties of Flutter to get a highly responsive design:

    In addition to all, you can look here for more.