FilledStacks / responsive_builder

A set of widgets to make responsive UI building in flutter more readable
MIT License
497 stars 80 forks source link

ipadOs is currently classified as Desktop #18

Closed lcsvcn closed 4 years ago

lcsvcn commented 4 years ago

ipadOs is classified as Desktop

Since all desktop/notebook have width > height and all tablets has height > width, I think IpadOS fits better if classified as Tablet

Maybe should be nice to change this in the next update

FilledStacks commented 4 years ago

You can add custom break points :) Check the readme and set the break points how you'd like it to be.

lcsvcn commented 4 years ago

Thanks, it worked :)

If anyone wants Ipad Pro to be classified as tablet you can set as this:

ScreenBreakpoints(tablet: 600, desktop: 1050, watch: 300),

FilledStacks commented 4 years ago

@lcsvcn thanks for sharing your breakpoints. yeah i had the oposite problem with a smaller android tablet where it was classified as a phone so it showed the mobile UI. It'll always be a custom break point solution. Happy you solved it!