首页 > 技术文章 > FlutterUI开发-改变状态栏颜色

oceaneyes-gzy 2020-02-04 16:50 原文

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(),
        )
    );

推荐阅读