Flutter: How to change the status bar text color on Android and iOS when not using AppBar

Felicia

I'm new to Flutter, I googled about this question but found no answer works for me.

My code is shown as below, the status bar color works well, it is white now. But the status bar text color on Android is also white, seems like the Brightness.dark not working at all...

Your answer will be appreciated, thank you! <3

Widget build(BuildContext context) {

 SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.dark.copyWith(
   statusBarColor: Colors.white, // Color for Android
   statusBarBrightness: Brightness.dark // Dark == white status bar -- for IOS.
 ));

 return Scaffold(
   body: Container(
     ...
}
vann_goh

According to the SystemUiOverLayStyle API docs, the text color of status bar on Android cannot be changed by statusBarBrightness which is only honored in iOS.

SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
      statusBarColor: Colors.white,               // Only honored in Android M and above
      statusBarIconBrightness: Brightness.dark   // Only honored in Android M and above
      statusBarBrightness: Brightness.light,      // Only honored in iOS
));

Hope this helps! Cheers

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

Customize iOS 7 status bar text Color

분류에서Dev

Removing Status Bar In IOS 8 When Using A UINavigationController

분류에서Dev

Android: change color of disabled text using Theme/Style?

분류에서Dev

IOS- How to change text color and selected date border color in UIdatepicker?

분류에서Dev

How to change the status bar bgcolor for UITableView with hidden nav bar?

분류에서Dev

Cannot change text and background color of searchbar in navigation bar

분류에서Dev

Using jQuery Switch Case to Change text Color

분류에서Dev

How to change the color of the text of a label in Xcode

분류에서Dev

How to change the color of the text in below code?

분류에서Dev

How to change web browser's tab bar background color or image?

분류에서Dev

How to change section color of a stacked bar chart in Google Charts API?

분류에서Dev

How to change color of the bubble (under cursor) on EditText in Flutter

분류에서Dev

How do I change Button Text color onclick event(asp.net, C#)using Css file?

분류에서Dev

How do I change the color of all text and backgrounds with javascript?

분류에서Dev

iOS 8 Orientation Landscape status bar issue

분류에서Dev

change the text to uibutton in iOS

분류에서Dev

Change the text color on WPF Calendar?

분류에서Dev

Text element background color change

분류에서Dev

Change the text color of the popup menu

분류에서Dev

XPages - change background color of place bar button

분류에서Dev

<meter> Color Change on Animation Health Bar

분류에서Dev

How to change the color of button and pause screen for few second when it clicked?

분류에서Dev

Flutter: Is there any way of using a widget only on ios but not on android?

분류에서Dev

Overlay Status bar on android 4.2.2+

분류에서Dev

Android: Detect status bar notification click

분류에서Dev

How can I change the color of android:homeAsUpIndicator in theme

분류에서Dev

On android, when I set the Text of a TextView dynamically it doesn't change

분류에서Dev

Tool_Bar with android CardView and Transparent status bar

분류에서Dev

Android Studio refused to show status bar nor Nav Bar

Related 관련 기사

  1. 1

    Customize iOS 7 status bar text Color

  2. 2

    Removing Status Bar In IOS 8 When Using A UINavigationController

  3. 3

    Android: change color of disabled text using Theme/Style?

  4. 4

    IOS- How to change text color and selected date border color in UIdatepicker?

  5. 5

    How to change the status bar bgcolor for UITableView with hidden nav bar?

  6. 6

    Cannot change text and background color of searchbar in navigation bar

  7. 7

    Using jQuery Switch Case to Change text Color

  8. 8

    How to change the color of the text of a label in Xcode

  9. 9

    How to change the color of the text in below code?

  10. 10

    How to change web browser's tab bar background color or image?

  11. 11

    How to change section color of a stacked bar chart in Google Charts API?

  12. 12

    How to change color of the bubble (under cursor) on EditText in Flutter

  13. 13

    How do I change Button Text color onclick event(asp.net, C#)using Css file?

  14. 14

    How do I change the color of all text and backgrounds with javascript?

  15. 15

    iOS 8 Orientation Landscape status bar issue

  16. 16

    change the text to uibutton in iOS

  17. 17

    Change the text color on WPF Calendar?

  18. 18

    Text element background color change

  19. 19

    Change the text color of the popup menu

  20. 20

    XPages - change background color of place bar button

  21. 21

    <meter> Color Change on Animation Health Bar

  22. 22

    How to change the color of button and pause screen for few second when it clicked?

  23. 23

    Flutter: Is there any way of using a widget only on ios but not on android?

  24. 24

    Overlay Status bar on android 4.2.2+

  25. 25

    Android: Detect status bar notification click

  26. 26

    How can I change the color of android:homeAsUpIndicator in theme

  27. 27

    On android, when I set the Text of a TextView dynamically it doesn't change

  28. 28

    Tool_Bar with android CardView and Transparent status bar

  29. 29

    Android Studio refused to show status bar nor Nav Bar

뜨겁다태그

보관