[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.
This commit is contained in:
parent
a86ca3f41c
commit
8daa13cd99
|
@ -193,6 +193,7 @@ class Conference extends Component<Props> {
|
|||
accessible = { false }
|
||||
style = { styles.conference }>
|
||||
<StatusBar
|
||||
barStyle = 'light-content'
|
||||
hidden = { true }
|
||||
translucent = { true } />
|
||||
|
||||
|
|
Loading…
Reference in New Issue