Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Libraries/Components/Navigation/NavigatorIOS.ios.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,10 @@ var NavigatorIOS = React.createClass({
*/
tintColor: PropTypes.string,

/**
* The color used for background of the navigation bar
*/
barTintColor: PropTypes.string
},

navigator: (undefined: ?Object),
Expand Down Expand Up @@ -547,7 +551,8 @@ var NavigatorIOS = React.createClass({
backButtonTitle={route.backButtonTitle}
rightButtonTitle={route.rightButtonTitle}
onNavRightButtonTap={route.onRightButtonPress}
tintColor={this.props.tintColor}>
tintColor={this.props.tintColor}
barTintColor={this.props.barTintColor}>
<Component
navigator={this.navigator}
route={route}
Expand Down