FlutterUI开发-改变状态栏颜色

1:使用AppBar

 // brightness:关键代码

 appBar: AppBar(
          title: Text('appbar',style: TextStyle(color: Colors.black),),
          brightness: Brightness.light,
          backgroundColor: Colors.white,
),

2:未使用AppBar

单页设置更改状态栏颜色

   return AnnotatedRegion(
        value: SystemUiOverlayStyle.dark,
        child: Scaffold(
          resizeToAvoidBottomInset: false,
          body: Column(),
        )
    );

你可能感兴趣的:(Flutter,移动开发)