FlutterUI开发-改变状态栏颜色

1:使用AppBar

 // brightness:关键代码

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

2:未使用AppBar

单页设置更改状态栏颜色

   return AnnotatedRegion<SystemUiOverlayStyle>(
        value: SystemUiOverlayStyle.dark,
        child: Scaffold(
          resizeToAvoidBottomInset: false,
          body: Column(),
        )
    );
posted @ 2020-02-04 16:50  OCEANEYES.GZY  阅读(915)  评论(0编辑  收藏  举报