Is there a way to change the Android status bar color with React Native?

前端 未结 12 743
孤街浪徒
孤街浪徒 2021-02-03 19:34

I just got started with React Native for Android, and I\'m trying to figure out if there\'s a way to change the status bar color for Android...

Like this?

12条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-03 20:12

    You can use React Native Status Bar(detailed description here). All you need to do is wrapping navigator with a view and adding a StatusBar component above it. Don't forget to import StatusBar from 'react-native' package.

    
      
      
          
            
        }
      />
    
    

    One thing I've noticed is that you should style the parent View with flex:1, without it you'll just see a white blank screen. It's not mentioned in RN Documents though.

提交回复
热议问题