Flutter - How to set status bar color when AppBar not present

后端 未结 17 810
孤城傲影
孤城傲影 2020-12-07 23:56

How to set status bar color when AppBar not present.

I have tried this but not working.

Widget build(BuildContext context) {
    SystemChrome.setSys         


        
17条回答
  •  悲&欢浪女
    2020-12-08 01:02

    this best status bar like default material design theme without AppBar()

     Container(width: MediaQuery.of(context).size.width, height: MediaQuery.of(context).padding.top, color: Theme.of(context).accentColor)
    

提交回复
热议问题