Skip to content

Commit a46bc52

Browse files
committed
fix prop enumeration for flow
1 parent 146abe1 commit a46bc52

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Libraries/Components/TabBarIOS/TabBarIOS.ios.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ var TabBarIOS = React.createClass({
3737

3838
render: function() {
3939
return (
40-
<RCTTabBar style={[styles.tabGroup, this.props.style]} {...this.props}>
40+
<RCTTabBar style={[styles.tabGroup, this.props.style]}
41+
tintColor={this.props.tintColor}
42+
barTintColor={this.props.barTintColor}>
4143
{this.props.children}
4244
</RCTTabBar>
4345
);

0 commit comments

Comments
 (0)