'Flutter-How to change the Statusbar text color in Dark Mode?
I hope to control the statusbar text color in iOS 13 Dark Mode. I could change the statusbar color by setting the Scaffold's AppBar property "brightness" When not open the Dark Mode. Codes just like below:
return Scaffold(
appBar: AppBar(
brightness: Brightness.light, //<--Here!!!
title: Text(widget.title),
),
...
The effort just like this:
But when I enable the simulator's Dark Mode, the method is not working.
Open the simulator's "Dark Appearance":

After opening the "Dark Appearance", the statusbar text color couldn't change any more by the method, it's just in white color(lightness mode).

I have tried those method to change statusbar text color:
Method 1:
void main() {
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.light);
SystemChrome.setPreferredOrientations([
DeviceOrientation.portraitUp,
DeviceOrientation.portraitDown
]);
runApp(MyApp());
}
Method 2:
return AnnotatedRegion<SystemUiOverlayStyle>(
value: SystemUiOverlayStyle.light,
child: Material(
child: Scaffold(
appBar: AppBar(
brightness: Brightness.light,
title: Text(widget.title),
),
body: Center(
But neither of them could work.
Hope your help! Thank you.
Solution 1:[1]
I found my question just the same as the flutter Issue#41067 ---"Flutter not automatically changing the status bar icons to black on devices running iOS 13.0 in Dark Mode it only does so when Dark Mode on iOS 13 is turned off #41067"
And the Issue state is Opening, so just hope it will be resolved as soon as possible. The issue link just below: flutter issue#41067
Solution 2:[2]
Under ios/Runner in Info.plist add
<key>UIUserInterfaceStyle</key>
<string>Light</string>
<key>UIViewControllerBasedStatusBarAppearance</key>
<true/>
it worked for me.
Solution 3:[3]
If your app is a materialApp you can set the darkTheme property of your MaterialApp:
return new MaterialApp(
darkTheme: ThemeData.dark(),
);
Here is the link to the doc: https://api.flutter.dev/flutter/material/MaterialApp-class.html
If it don't solve your problem you can create your own Dark theme using:
return new MaterialApp(
darkTheme: ThemeData(
// Your theme config
),
);
Link to ThemeData doc: https://api.flutter.dev/flutter/material/ThemeData-class.html
Solution 4:[4]
import 'package:flutter_statusbarcolor/flutter_statusbarcolor.dart';
This worked for me. If you want black text use:
@override
Widget build(BuildContext context) {
FlutterStatusbarcolor.setStatusBarWhiteForeground(false);
return MaterialApp();
}
For white text use:
@override
Widget build(BuildContext context) {
FlutterStatusbarcolor.setStatusBarWhiteForeground(true);
return MaterialApp();
}
Solution 5:[5]
change status bar text color/icon brightness.flutter 2.2.3
MaterialApp( title: 'Flutter Demo', theme: ThemeData( appBarTheme: Theme.of(context).appBarTheme.copyWith( brightness: Brightness.dark, systemOverlayStyle: SystemUiOverlayStyle( statusBarIconBrightness: Brightness.light, ), ), primarySwatch: Colors.blue, ), home: MyHomePage(title: 'Flutter Demo Home Page'), );
Solution 6:[6]
In my case I wanted a dark font in my status bar on my light themed app. The problem is that my app bar's background color is transparent so the status bar default font color is white (I tried setting the app bars color to white and voilĂ - the status bar text font was black). Since I wanted to keep my transparent status bar, my solution was to add systemOverlayStyle to my theme's appBarTheme like this.:
AppBarTheme(
systemOverlayStyle: SystemUiOverlayStyle(
statusBarBrightness: Brightness.light,
),
The app_bar_theme.dart file told me this solution in the brightness' deprecation notes:
@Deprecated( 'This property is no longer used, please use systemOverlayStyle instead. ' 'This feature was deprecated after v2.4.0-0.0.pre.', ) this.brightness,
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Alexweng |
| Solution 2 | m1416 |
| Solution 3 | |
| Solution 4 | Ammonious |
| Solution 5 | Faisal khan |
| Solution 6 | Colibri |


