美文网首页
react native 状态栏的修改

react native 状态栏的修改

作者: wanTag | 来源:发表于2018-07-31 16:16 被阅读917次

    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

    相关文章

      网友评论

          本文标题:react native 状态栏的修改

          本文链接:https://www.haomeiwen.com/subject/ctyhvftx.html