1

我正在使用 react-native-navbar,我做错了吗?状态栏颜色没有改变。它适用于iphone,但不适用于android。我的代码如下

 <NavigationBar
                  title={{title:'Notifications', tintColor:'yellow'}}
                  tintColor="#ef5350"
                  statusBar={{style: 'light-content',tintColor:'#ef5350'}}
              />

在此处输入图像描述

4

1 回答 1

0

您必须将此道具设置为StatusBar组件:backgroundColor='#ef5350'

根据文档

[Android] 背景颜色?:$FlowFixMe

状态栏的背景颜色。

于 2017-04-19T15:17:23.717 回答