简体   繁体   English

更改状态栏图标颜色 Flutter

[英]Change status bar icons color Flutter

Is it possible to change these icons color in IOS?是否可以在 IOS 中更改这些图标颜色?

IOS 状态栏图标

You can use SystemChrome您可以使用 SystemChrome

SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
    statusBarIconBrightness: Brightness.light,
  ));

There are several ways to change the appearance of the status bar.有几种方法可以更改状态栏的外观。 If the application has an AppBar, you can set the backgroundColor and brightness arguments of the AppBar to change the style.如果应用有 AppBar,可以设置 AppBar 的backgroundColor和亮度 arguments 来改变样式。 If the application doesn't have an AppBar, you can use SystemChrome.setSystemUIOverlayStyle or AnnotatedRegion<SystemUiOverlayStyle>如果应用程序没有 AppBar,您可以使用SystemChrome.setSystemUIOverlayStyleAnnotatedRegion<SystemUiOverlayStyle>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM