Home > front end >  How can I make screen comfortable for all mobiles?
How can I make screen comfortable for all mobiles?

Time:10-18

When I developed a screen on my android mobile then its looks perfect...but when I run screen on another android mobile then its not looks perfect...what is the solution of this problem

CodePudding user response:

You shouldn't use absolute positioning and absolute sizing, you need to make your app flexible. The main problem that new flutter users face is their content gets overflowed. Most of the times to fix this issue you must wrap your widgets with some sort of scroll, such as SingleChildScrollView.

Check this link for more details regarding overflowing and this link for more details on adaptive apps.

CodePudding user response:

Adding to what Mohammed said, also endeavor to declarer your media query heights, widths and work with it at every point you need so absolute values.

  • Related