...
|
...
|
@@ -81,10 +81,10 @@ const styles = StyleSheet.create({ |
|
|
}),
|
|
|
left: 0,
|
|
|
right: 0,
|
|
|
backgroundColor: 'transparent',
|
|
|
backgroundColor: 'white',
|
|
|
},
|
|
|
header: {
|
|
|
backgroundColor: 'transparent',
|
|
|
backgroundColor: 'white',
|
|
|
paddingTop: 0,
|
|
|
top: 0,
|
|
|
...Platform.select({
|
...
|
...
|
@@ -496,6 +496,12 @@ class NavBar extends React.Component { |
|
|
this.props.renderTitle;
|
|
|
|
|
|
let channel = this.props.getChannel();
|
|
|
let opacityStyle = null;
|
|
|
|
|
|
if (channel == 2 || channel == 3 || channel == 4) {
|
|
|
opacityStyle = {opacity: 0.85};
|
|
|
}
|
|
|
|
|
|
// yoho
|
|
|
if (channel == 5) {
|
|
|
return (
|
...
|
...
|
@@ -521,6 +527,7 @@ class NavBar extends React.Component { |
|
|
this.props.navigationBarStyle,
|
|
|
state.navigationBarStyle,
|
|
|
selected.navigationBarStyle,
|
|
|
opacityStyle,
|
|
|
]}
|
|
|
>
|
|
|
<Image
|
...
|
...
|
|