Browse Source

Update styling-the-navigator.md

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

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

@@ -63,9 +63,9 @@ this.props.navigator.setStyle({
63 63
   navBarNoBorder: false, // hide the navigation bar bottom border (hair line). Default false
64 64
   drawUnderNavBar: false, // draw the screen content under the nav bar, works best with navBarTranslucent:true
65 65
   drawUnderTabBar: false, // draw the screen content under the tab bar (the tab bar is always translucent)
66
-  statusBarBlur: false, // blur the area under the status bar, works best with navBarHidden:true
67 66
   navBarBlur: false, // blur the entire nav bar, works best with drawUnderNavBar:true
68 67
   tabBarHidden: false, // make the screen content hide the tab bar (remembered across pushes)
68
+  statusBarHidden: false, // make the status bar hidden regardless of nav bar state
69 69
   statusBarTextColorScheme: 'dark', // text color of status bar, 'dark' / 'light' (remembered across pushes)
70 70
   navBarSubtitleColor: 'red', // subtitle color
71 71
   navBarSubtitleFontFamily: 'font-name', // subtitle font
@@ -76,7 +76,7 @@ this.props.navigator.setStyle({
76 76
   // iOS only
77 77
   statusBarTextColorSchemeSingleScreen: 'light', // same as statusBarTextColorScheme but does NOT remember across pushes
78 78
   statusBarHideWithNavBar: false, // hide the status bar if the nav bar is also hidden, useful for navBarHidden:true
79
-  statusBarHidden: false, // make the status bar hidden regardless of nav bar state
79
+  statusBarBlur: false, // blur the area under the status bar, works best with navBarHidden:true
80 80
   
81 81
   disabledBackGesture: false, // default: false. Disable the back gesture (swipe gesture) in order to pop the top screen. 
82 82
   disabledSimultaneousGesture: true, // default: true. Disable simultaneous gesture recognition.