其他分享
首页 > 其他分享> > android – React Native中的StatusBar颜色

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

标签:android,statusbar,react-native,expo,create-react-native-app
来源: https://codeday.me/bug/20190527/1164084.html