You can style the navigator appearance and behavior by passing an options
object. This object can be passed when the screen is originally created; can be defined per-screen by setting static options(passProps)
on the screen component; and can be overridden when a screen is pushed, dynamically (after the screen was already rendered at least once) using mergeOptions()
.
The easiest way to style your screen is by adding static options(passProps)
to your screen React component definition. passProps
is the same passProps you can specify as part of the push/modal or other command operation.
export default class StyledScreen extends Component {
static options(passProps) {
return {
topBar: {
title: {
text: 'My Screen'
},
drawBehind: true,
visible: false,
animate: false
}
};
}
constructor(props) {
super(props);
}
render() {
return (
<View style={{flex: 1}}>...</View>
);
}
In v2 we added setDefaultOptions
API for styles that should be applied on all components.
setDefaultOptions
Does not update options of existing component, therefore it should be called beforesetRoot
Navigation.setDefaultOptions({
topBar: {
visible: false
}
});
Use the mergeOptions
method to change a screen’s style dynamically. WARNING! these options will be applied on an already rendered screen, after it has been rendered at least once.
Navigation.mergeOptions(this.props.componentId, {
topBar: {
visible: true
}
});
{
statusBar: {
visible: false,
style: 'light' | 'dark'
},
layout: {
backgroundColor: 'white',
orientation: ['portrait', 'landscape'] // An array of supported orientations
},
modalPresentationStyle: 'overCurrentContext', // Supported styles are: 'formSheet', 'pageSheet', 'overFullScreen', 'overCurrentContext', 'currentContext', 'popOver', 'fullScreen' and 'none'. On Android, only overCurrentContext and none are supported.
topBar: {
visible: true,
animate: false, // Controls whether TopBar visibility changes should be animated
hideOnScroll: true,
buttonColor: 'black',
drawBehind: false,
testID: 'topBar',
title: {
text: 'Title',
fontSize: 14,
color: 'red',
fontFamily: 'Helvetica',
component: {
name: 'example.CustomTopBarTitle',
alignment: 'center'
}
},
subtitle: {
text: 'Title',
fontSize: 14,
color: 'red',
fontFamily: 'Helvetica',
alignment: 'center'
},
backButton: {
icon: require('icon.png'),
visible: true
},
background: {
color: '#00ff00',
component: {
name: 'example.CustomTopBarBackground'
}
}
},
bottomTabs: {
visible: true,
animate: false, // Controls whether BottomTabs visibility changes should be animated
currentTabIndex: 0,
currentTabId: 'currentTabId',
testID: 'bottomTabsTestID',
drawBehind: false,
backgroundColor: 'white'
},
bottomTab: {
text: 'Tab 1',
badge: '2',
badgeColor: 'red',
testID: 'bottomTabTestID',
icon: require('tab.png'),
iconColor: 'red',
selectedIconColor: 'blue',
textColor: 'red',
selectedTextColor: 'blue',
fontFamily: 'Helvetica',
fontSize: 10
},
sideMenu: {
left: {
width: 260,
height: 270,
visible: false,
enabled: true
},
right: {
width: 260,
height: 270,
visible: false,
enabled: true
}
},
overlay: {
interceptTouchOutside: true
},
preview: {
reactTag: 0, // result from findNodeHandle(ref)
width: 100,
height: 100,
commit: false,
actions: [{
id: 'ActionId1',
title: 'Action title',
style: 'selected', // default, selected, destructive,
actions: [/* ... */]
}]
}
}
{
statusBar: {
hideWithTopBar: false,
blur: true
},
popGesture: true,
backgroundImage: require('background.png'),
rootBackgroundImage: require('rootBackground.png'),
topBar: {
barStyle: 'default' | 'black',
background: {
color: 'white',
translucent: true,
blur: false
}
noBorder: false,
backButton: {
title: 'Back',
showTitle: false
},
searchBar: true, // iOS 11+ native UISearchBar inside topBar
searchBarHiddenWhenScrolling: true,
searchBarPlaceholder: 'Search', // iOS 11+ SearchBar placeholder
largeTitle: {
visible: true,
fontSize: 30,
color: 'red',
fontFamily: 'Helvetica'
},
},
sideMenu: {
left: {
shouldStretchDrawer: false, // defaults to true, when false sideMenu contents not stretched when opened past the width
animationVelocity: 2500, // defaults to 840, high number is a faster sideMenu open/close animation
animationType: 'parallax' // defaults to none if not provided, options are 'parallax', 'door', 'slide', or 'slide-and-scale'
},
right: {
shouldStretchDrawer: false, // defaults to true, when false sideMenu contents not stretched when opened past the width
animationVelocity: 2500, // defaults to 840, high number is a faster sideMenu open/close animation
animationType: 'parallax' // defaults to none if not provided, options are 'parallax', 'door', 'slide', or 'slide-and-scale'
}
}
bottomTabs: {
barStyle: 'default' | 'black',
translucent: true,
hideShadow: false
},
bottomTab: {
iconInsets: { top: 0, left: 0, bottom: 0, right: 0 },
selectedIcon: require('selectedTab.png'),
disableIconTint: true, //set true if you want to disable the icon tinting
disableSelectedIconTint: true
}
}
{
statusBar: {
backgroundColor: 'red',
drawBehind: true,
visible: false
},
layout: {
topMargin: Navigation.constants().statusBarHeight, // Set the layout's top margin
orientation: ['portrait', 'landscape'] | ['sensorLandscape'] // An array of supported orientations
},
topBar: {
height: 70, // TopBar height in dp
borderColor: 'red',
borderHeight: 1.3,
elevation: 1.5, // TopBar elevation in dp
topMargin: 24, // top margin in dp
title: {
height: 70 // TitleBar height in dp
}
},
bottomTabs: {
elevation: 8, // BottomTabs elevation in dp
titleDisplayMode: 'alwaysShow' | 'showWhenActive' | 'alwaysHide' // Sets the title state for each tab.
},
bottomTab: {
selectedFontSize: 19 // Selected tab font size in sp
}
}
If you set any styles related to the Status Bar, make sure that in Xcode > project > Info.plist, the property View controller-based status bar appearance
is set to YES
.
If you’d like to use a custom font, you’ll first have to edit your project.
Android - add the .ttf
or .otf
files to src/main/assets/fonts/
iOS - follow this guide
Then, the tab icon can be defined by following syntax:
bottomTab: {
icon: {
uri: 'icon_name',
...
},
...
}
Animation used for navigation commands that modify the layout hierarchy can be controlled in options. Animations can be modified per command and it’s also possible to change the default animation for each command.
The following properties can be animated:
{
from: 0, // Mandatory, initial value
to: 1, // Mandatory, end value
duration: 400, // Default value is 300 ms
startDelay: 100, // Default value is 0
interpolation: 'accelerate' | 'decelerate' // Optional
}
For example, changing the animation used when the app is first launched (Supported only on Android):
Navigation.setDefaultOptions({
animations: {
setRoot: {
enabled: 'true' | 'false', // Optional, used to enable/disable the animation
alpha: {
from: 0,
to: 1,
duration: 400,
startDelay: 100,
interpolation: 'accelerate'
}
}
}
});
Animations for the following set of commands can be customized
When pushing and popping screens to and from a stack, you can control the TopBar, BottomTabs and actual content animations as separately.
animations: {
push: {
enabled: 'true' | 'false', // Optional, used to enable/disable the animation
topBar: {
id: 'TEST', // Optional, id of the TopBar we'd like to animate.
alpha: {
from: 0,
to: 1
}
},
bottomTabs: {
alpha: {
from: 0,
to: 1
}
},
content: {
alpha: {
from: 0,
to: 1
}
}
},
pop: {
...
}
}