请教一下,为了达到沉浸式的效果,我需要把StatusBar的颜色和导航颜色设置成一样,如下代码
static navigationOptions = {
headerStyle:{
backgroundColor:'#458B74',
},
headerTitle:(
<View style={{alignSelf:'center'}}>
<View>
<StatusBar
backgroundColor={'#458B74'}
barStyle='light-content'/>
</View>
<Text style={{
fontSize:20,
color:'white',
}}>
{'Title'}
</Text>
</View>
)
}
但是在Android环境中,其它没有设置StatusBar的页面的状态栏也被染色了。
这个问题还有没有其他比较好解决方式?