android – React Native中的StatusBar颜色

如何在不编辑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

上一篇:iOS设置StatusBar的字体颜色


下一篇:【Qt开发】菜单栏,工具栏和状态栏