全局设置:
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.light);
使用APPBar
AppBar(
systemOverlayStyle: SystemUiOverlayStyle.light,
);
颜色值
//白色
SystemUiOverlayStyle.light
//黑色
SystemUiOverlayStyle.dark
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.light);
APPBar
AppBar(
systemOverlayStyle: SystemUiOverlayStyle.light,
);
//白色
SystemUiOverlayStyle.light
//黑色
SystemUiOverlayStyle.dark