flutter 底部状态栏透明沉浸

flutter沉浸式-底部状态栏透明沉浸

在main入口配置即可

1
2
3
4
5
6
7
8
9
10
11
12
main() {
runApp(MyApp());

if (Platform.isAndroid) {
SystemUiOverlayStyle systemUiOverlayStyle = const SystemUiOverlayStyle(
statusBarColor: Colors.transparent,
systemNavigationBarColor: Color(0x002196f3),
);
SystemChrome.setSystemUIOverlayStyle(systemUiOverlayStyle);
SystemChrome.setEnabledSystemUIMode(SystemUiMode.edgeToEdge);
}
}