如何在不编辑Android特定文件的情况下从react-native更改StatusBar
组件的背景颜色?
Docs says,我可以使用backgroundColor
财产.但它失败了. barStyle属性,setBarStyle&& setBackgroundColor静态方法也不能正常工作.
只有隐藏属性才有效.
我使用create-react-native-app
,用Expo构建.
解决方法:
在Expo App中,您需要在项目根目录中编辑app.json,如下所示:
{
"expo": {
"sdkVersion": "16.0.0",
"androidStatusBar": {
"barStyle": "dark-content",
"backgroundColor": "#0A48A5"
}
}
}
参见世博文档:
https://docs.expo.io/versions/v16.0.0/guides/configuration.html