在本机android应用程序中,我可以使用backgroundColor设置StatusBar
背景颜色,但字体颜色仍为白色,我想改为暗色
答案 0 :(得分:6)
如果您想将文字颜色更改为黑色,可以使用:
<StatusBar
backgroundColor="#fff"
barStyle="dark-content" // Here is where you change the font-color
/>
您可以使用光照内容或黑暗内容。
尽管它在React Native页面上说只适用于IOS,但它实际上也适用于Android。
使用RN 0.36.1
在Android 6.0+上尝试