Fix one warning
Summary: translucent is a boolean not a stringCloses https://github.com/facebook/react-native/pull/3134 Reviewed By: @svcscm Differential Revision: D2495517 Pulled By: @frantic
This commit is contained in:
parent
6068c07e98
commit
4bb58e59f7
|
@ -66,7 +66,7 @@ var NavigatorIOSColors = React.createClass({
|
||||||
tintColor="#FFFFFF"
|
tintColor="#FFFFFF"
|
||||||
barTintColor="#183E63"
|
barTintColor="#183E63"
|
||||||
titleTextColor="#FFFFFF"
|
titleTextColor="#FFFFFF"
|
||||||
translucent="true"
|
translucent={true}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue