Dead Pool
Dead Pool

Reputation: 177

Developing for different screen sizes using flutter?

I have an app that I am going to upload to the appstore and playstore pretty soon but I am worried that it might look funny on different phone screens that vary in sizes (The app is for mobile phones only no tablets) what's the best way to code for different screen sizes using flutter?

Upvotes: 1

Views: 1592

Answers (2)

Doc
Doc

Reputation: 11671

You use MediaQuery for size determination.

And OrientationBuilder for orientation of the device.

Here is a nice article you might want to read.

Upvotes: 3

Related Questions