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

后端 未结 17 812
孤城傲影
孤城傲影 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 00:44

    Simply add this to your build function, or main function.

    import 'package:flutter/services.dart';
    
    Widget build(BuildContext context) {
      SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.light);
      ...
    }
    

提交回复
热议问题