MediaQuery.of(context).size 拿到的就是视口 如手机屏幕大小的size
Expanded组件必须用在Row、Column、Flex内
在row中 Container如果没有child 只设置width 那么height会占满
如果有child 就会按child的尺寸走
获取上边距和下边距的值。(主要用于刘海屏)
final double topPadding = MediaQuery.of(context).padding.top;
final double bottomPadding = MediaQuery.of(context).padding.bottom;
需要注意的是:
上边距在 iPhoneX 上的值是 44, 在其他设备上的值是 20, 是包含了电池条的高度的。
下边距在iPhoneX 上的值是34,在其他设备上的值是 0。
ConnectApp
EventOfflineDetailScreen 动态改变状态栏
didChangeDependencies
RouteAware didPush
WidgetsBindingObserver didChangeLocales
网友评论