react native 状态栏的修改

2018-07-31  本文已影响917人  wanTag

StatusBar的修改

constructor(props) {
   super(props);
   this.state = {
        MainColor: '#0072E3',
   };
}


 {/*状态栏*/}
 <StatusBar
      animated={true} //指定状态栏的变化是否应以动画形式呈现。目前支持这几种样式:backgroundColor, barStyle和hidden
      hidden={false}  //是否隐藏状态栏。
      backgroundColor={this.state.MainColor} //状态栏的背景色
      translucent={true}//指定状态栏是否透明。设置为true时,应用会在状态栏之下绘制(即所谓“沉浸式”——被状态栏遮住一部分)。常和带有半透明背景色的状态栏搭配使用。
      barStyle='light-content'
  />

效果:


11.png
上一篇 下一篇

猜你喜欢

热点阅读