|
@@ -73,6 +73,7 @@ this.props.navigator.setStyle({
|
73
|
73
|
screenBackgroundColor: 'white', // Default screen color, visible before the actual react view is rendered
|
74
|
74
|
orientation: 'portrait' // Sets a specific orientation to a modal and all screens pushed to it. Default: 'auto'. Supported values: 'auto', 'landscape', 'portrait'
|
75
|
75
|
disabledButtonColor: '#ff0000' // chnaged the navigation bar button text color when disabled.
|
|
76
|
+ rootBackgroundImageName: 'iOS: <name of image in Images.xcassets>. Android: <name of drawable>', // Static while you transition between screens. Works best with screenBackgroundColor: 'transparent'
|
76
|
77
|
|
77
|
78
|
// iOS only
|
78
|
79
|
statusBarTextColorSchemeSingleScreen: 'light', // same as statusBarTextColorScheme but does NOT remember across pushes
|
|
@@ -82,8 +83,7 @@ this.props.navigator.setStyle({
|
82
|
83
|
disabledBackGesture: false, // default: false. Disable the back gesture (swipe gesture) in order to pop the top screen.
|
83
|
84
|
disabledSimultaneousGesture: true, // default: true. Disable simultaneous gesture recognition.
|
84
|
85
|
screenBackgroundImageName: '<name of image in Images.xcassets>', // Optional. default screen background image.
|
85
|
|
- rootBackgroundImageName: '<name of image in Images.xcassets>', // Static while you transition between screens. Works best with screenBackgroundColor: 'transparent'
|
86
|
|
-
|
|
86
|
+
|
87
|
87
|
navBarButtonFontSize: 20, // Change font size nav bar buttons (eg. the back button) (remembered across pushes)
|
88
|
88
|
navBarButtonFontWeight: '500', // Change font weight nav bar buttons (eg. the back button) (remembered across pushes)
|
89
|
89
|
|