How to make device top panel (status bar) have the same background color as AppBar in flutter?

后端 未结 2 1909
北荒
北荒 2021-01-03 05:52

How to make device top panel (status bar) have the same background color as AppBar in flutter? The color of the device top panel is always darker than the AppBar backgroundC

2条回答
  •  北海茫月
    2021-01-03 06:30

    On iOS, this is already true.

    On Android, add the following to onCreate in MainActivity.java, after the call to super.onCreate(savedInstanceState);.

    getWindow().setStatusBarColor(0x00000000);
    

    This will override the default status bar color of 0x40000000, which is set in the onCreate method of FlutterActivityDelegate.

提交回复
热议问题