我有一个应用程序,我很快就会上传到appstore和Playstore但是我担心它在不同大小不同的手机屏幕上看起来很有趣(该应用程序适用于手机只有平板电脑)什么是最好的方法使用颤动的不同屏幕尺寸的代码?
尝试使用LayoutBuilder用于不同的布局大小,并使用OrientationBuilder用于不同的方向。
检查一下:https://medium.com/flutter-community/developing-for-multiple-screen-sizes-and-orientations-in-flutter-fragments-in-flutter-a4c51b849434
您使用MediaQuery进行尺寸确定。
MediaQuery
并且OrientationBuilder用于设备的方向。
OrientationBuilder
Here是一篇你可能想要阅读的好文章。