浏览代码

[iOS] Fix statusbar color while in a conference

Be explciit about the appearance we desire, since each mounted StaturBar
component will override the existing values. In this case, the problem was
caused because the default on iOS is dark, whereas it's light on Android.

Set it to light so it works consistently across both, which is what we want.
master
Saúl Ibarra Corretgé 7 年前
父节点
当前提交
8daa13cd99
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1
    0
      react/features/conference/components/Conference.native.js

+ 1
- 0
react/features/conference/components/Conference.native.js 查看文件

@@ -193,6 +193,7 @@ class Conference extends Component<Props> {
193 193
                 accessible = { false }
194 194
                 style = { styles.conference }>
195 195
                 <StatusBar
196
+                    barStyle = 'light-content'
196 197
                     hidden = { true }
197 198
                     translucent = { true } />
198 199
 

正在加载...
取消
保存