深色模式
Flutter尺寸相关
MediaQuery
屏幕宽高
dart
// 获取屏幕的宽度
double screenWidth = MediaQuery.of(context).size.width;
// 获取屏幕的高度
double screenHeight = MediaQuery.of(context).size.height;
系统状态栏
dart
final statusBarHeight = MediaQuery.of(context).padding.top;
系统导航栏
dart
final navigationBarHeight = MediaQuery.of(context).padding.bottom;
constant.dart
constants.dart
中,定义了一些常量。
AppBar组件的高度
dart
/// The height of the toolbar component of the [AppBar].
const double kToolbarHeight = 56.0;
BottomNavigationBar组件的高度
dart
/// The height of the bottom navigation bar.
const double kBottomNavigationBarHeight = 56.0;