gpt4 book ai didi

Flutter - 在没有 AppBar 的情况下更改状态栏颜色

转载 作者:行者123 更新时间:2023-12-05 08:29:24 25 4
gpt4 key购买 nike

如何在没有 AppBar 的情况下更改状态栏颜色?

我的代码片段:

 @override
Widget build(BuildContext context) {

return Scaffold(
body: AnnotatedRegion<SystemUiOverlayStyle>(
value: SystemUiOverlayStyle.light,
child: BodyWidget(),
),//
);
}

最佳答案

希望对你有帮助

void main() {
SystemChrome.setSystemUIOverlayStyle(
const SystemUiOverlayStyle(
statusBarColor: Colors.red,
),
);
runApp(MyApp());
}

关于Flutter - 在没有 AppBar 的情况下更改状态栏颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70836952/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com