1,在flutter中如何获取屏幕的宽高:
class _WidthDemoState extends State<WidthDemo> {
@override
Widget build(BuildContext context) {
final screenSize = MediaQuery.of(context).size;
return Container(
width: screenSize.width,
height: screenSize.height,
child: Text("Hello world"),
);
}
}
使用 宽度: MediaQuery.of(context).size.width;
高度: MediaQuery.of(context).size.height;
2,在flutter中获取状态栏的高度:
double appBarHeight=MediaQuery.of(context).padding.top;
这个就是获取状态栏的高度