颤动响应
Flutter responsiveness
我想制作一个响应式应用程序,我在 iPhone 11 上启动了我的应用程序,它看起来不错,但是当我想 运行 它在 iPhone 8(较小的设备) 它不适应屏幕尺寸。我正在使用 responsive_wrapper
包来实现它。但是没用。
Click here to see image
在SingleChildScrollView
中添加ResponsiveWrapper.builder
:see official Documentation
但是你必须做Container adaptive,而不是const height。设置高度:
MediaQuery.of(context).size.height * 0.4; // 40% of screen height
我想制作一个响应式应用程序,我在 iPhone 11 上启动了我的应用程序,它看起来不错,但是当我想 运行 它在 iPhone 8(较小的设备) 它不适应屏幕尺寸。我正在使用 responsive_wrapper
包来实现它。但是没用。
Click here to see image
在SingleChildScrollView
中添加ResponsiveWrapper.builder
:see official Documentation
但是你必须做Container adaptive,而不是const height。设置高度:
MediaQuery.of(context).size.height * 0.4; // 40% of screen height