StatusBar背景颜色iOS React Native

时间:2018-03-24 17:34:20

标签: ios react-native statusbar

是否有在iOS上设置背景颜色或透明Statusbar的方法?

"反应原生":" 0.54.2"

enter image description here

3 个答案:

答案 0 :(得分:1)

只需使用此

<StatusBar translucent backgroundColor="transparent" />

答案 1 :(得分:0)

您可以查看this question,这会非常有帮助。

你也可以使用这样的东西: <StatusBar hidden={false} barStyle="light-content" />

这将在iOS中为您提供以下内容

enter image description here

答案 2 :(得分:-1)

您可以使用rgba属性,它包含3个值,r代表红色g代表绿色,b代表蓝色。 a代表alpha,alpha参数是介于0.0(完全透明)和1.0(完全不透明)之间的数字。 rgba值看起来像这样==&gt;

backgroundColor: 'rgba(34,32,225, .6)'