Browse Source

Update styling-the-navigator.md

Guy Carmeli 7 years ago
parent
commit
230737b5b9
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      docs/styling-the-navigator.md

+ 1
- 1
docs/styling-the-navigator.md View File

@@ -54,13 +54,13 @@ this.props.navigator.setStyle({
54 54
   navBarBlur: false, // blur the entire nav bar, works best with drawUnderNavBar:true
55 55
   tabBarHidden: false, // make the screen content hide the tab bar (remembered across pushes)
56 56
   statusBarTextColorScheme: 'dark', // text color of status bar, 'dark' / 'light' (remembered across pushes)
57
-  statusBarTextColorSchemeSingleScreen: 'light', // same as statusBarTextColorScheme but does NOT remember across pushes
58 57
   navBarSubtitleColor: 'red', // subtitle color
59 58
   navBarSubtitleFontFamily: 'font-name', // subtitle font
60 59
   screenBackgroundColor: 'white', // Default screen color, visible before the actual react view is rendered
61 60
   orientation: 'portrait' // Sets a specific orientation to a modal and all screens pushed to it. Default: 'auto'. Supported values: 'auto', 'landscape', 'portrait'
62 61
   
63 62
   // iOS only
63
+  statusBarTextColorSchemeSingleScreen: 'light', // same as statusBarTextColorScheme but does NOT remember across pushes
64 64
   statusBarHideWithNavBar: false, // hide the status bar if the nav bar is also hidden, useful for navBarHidden:true
65 65
   statusBarHidden: false, // make the status bar hidden regardless of nav bar state
66 66