Search
 
SCRIPT & CODE EXAMPLE
 

DART

flutter ios status bar is dark

@Antoine Basically you can set your theme Brightness, or you can manually override the appbar brightness using the following :

appBar: new AppBar(
  title: new Text(widget.title),
  brightness: Brightness.light, // or use Brightness.dark
),
Do note that this will only switch between white and black status text color.

.dark will make the status bar text WHITE, while .light will make the status bar text BLACK

Maybe for a more custom color, like the comment said you can view SystemChrome class.
Comment

PREVIOUS NEXT
Code Example
Dart :: popup keyboard automatically in flutter 
Dart :: flutter get image file from assets 
Dart :: how to refresh a listview in flutter 
Dart :: flutter map with index 
Dart :: flutter cupertinoapp 
Dart :: flutter check application direction 
Dart :: Invalid argument(s): join(null, "bin", "cache", "dart-sdk"): part 0 was null, but part 1 was not. 
Dart :: flutter inheritance 
Dart :: dart interfaces 
Dart :: flutter flatbutton width 
Dart :: dart keybord input 
Dart :: alternate of string class in dart 
Dart :: get unique random numbers dart 
Dart :: OneSignalXCFramework (< 4.0, = 3.8.1, = 3.4.3) 
Dart :: UserScrollNotification in flutter 
Dart :: random.secure dart 
Dart :: change color icon tabbar flutter 
Dart :: what is pubspec.yaml 
Dart :: flutter write file 
Dart :: flutter showmodal initstate 
Dart :: Error: Assertion failed: org-dartlang-sdk:///flutter_web_sdk/lib/_engine/engine/navigation/history.dart:284:14 _userProvidedRouteName != null is not true 
Dart :: display numbered text in flutter 
Dart :: flutter force soft keyboard on widget 
Dart :: flutter elif 
Dart :: what is map in dart 
Swift :: center text swiftui 
Swift :: swiftui color picker 
Swift :: remove checkmark when selecting the cell again swift 5 
Swift :: swift uiswitch change size 
Swift :: swift get max of two numbers 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =