Flutter 设置状态栏字体黑白颜色

方法一:使用 方法 SystemChrome.setSystemUIOverlayStyle

SystemChrome.setSystemUIOverlayStyle(
 Theme.of(context).brightness == Brightness.dark 
? SystemUiOverlayStyle.light 
: SystemUiOverlayStyle.dark)

方法二:使用 AnnotatedRegion

return AnnotatedRegion(
  value: SystemUiOverlayStyle.dark,
  child:Text("状态栏颜色"),
); 

方法三:使用 AppBar自动适配

return Scaffold(
      appBar: AppBar(
        title: Text('标题'),
      ),
    );

你可能感兴趣的:(Flutter 设置状态栏字体黑白颜色)