Browse Source

Create styling-the-navigator.md

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

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

50
   statusBarBlur: false, // blur the area under the status bar, works best with navBarHidden:true
50
   statusBarBlur: false, // blur the area under the status bar, works best with navBarHidden:true
51
   navBarBlur: false, // blur the entire nav bar, works best with drawUnderNavBar:true
51
   navBarBlur: false, // blur the entire nav bar, works best with drawUnderNavBar:true
52
   tabBarHidden: false, // make the screen content hide the tab bar (remembered across pushes)
52
   tabBarHidden: false, // make the screen content hide the tab bar (remembered across pushes)
53
-  statusBarHideWithNavBar: false // hide the status bar if the nav bar is also hidden, useful for navBarHidden:true
54
-  statusBarHidden: false, // make the status bar hidden regardless of nav bar state
55
   statusBarTextColorScheme: 'dark', // text color of status bar, 'dark' / 'light' (remembered across pushes)
53
   statusBarTextColorScheme: 'dark', // text color of status bar, 'dark' / 'light' (remembered across pushes)
56
   statusBarTextColorSchemeSingleScreen: 'light' // same as statusBarTextColorScheme but does NOT remember across pushes
54
   statusBarTextColorSchemeSingleScreen: 'light' // same as statusBarTextColorScheme but does NOT remember across pushes
57
   navBarSubtitleColor: 'red', // subtitle color
55
   navBarSubtitleColor: 'red', // subtitle color
59
   orientation: 'portrait' // Sets a specific orientation to a modal and all screens pushed to it. Default: 'auto'. Supported values: 'auto', 'landscape', 'portrait'
57
   orientation: 'portrait' // Sets a specific orientation to a modal and all screens pushed to it. Default: 'auto'. Supported values: 'auto', 'landscape', 'portrait'
60
   
58
   
61
   // iOS only
59
   // iOS only
60
+  statusBarHideWithNavBar: false, // hide the status bar if the nav bar is also hidden, useful for navBarHidden:true
61
+  statusBarHidden: false, // make the status bar hidden regardless of nav bar state
62
+  
62
   disabledBackGesture: false, // default: false. Disable the back gesture (swipe gesture) in order to pop the top screen. 
63
   disabledBackGesture: false, // default: false. Disable the back gesture (swipe gesture) in order to pop the top screen. 
63
   screenBackgroundImageName: '<name of image in Images.xcassets>', // Optional. default screen background image.
64
   screenBackgroundImageName: '<name of image in Images.xcassets>', // Optional. default screen background image.
64
   
65