Quellcode durchsuchen

[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.
j8
Saúl Ibarra Corretgé vor 7 Jahren
Ursprung
Commit
8daa13cd99
1 geänderte Dateien mit 1 neuen und 0 gelöschten Zeilen
  1. 1
    0
      react/features/conference/components/Conference.native.js

+ 1
- 0
react/features/conference/components/Conference.native.js Datei anzeigen

193
                 accessible = { false }
193
                 accessible = { false }
194
                 style = { styles.conference }>
194
                 style = { styles.conference }>
195
                 <StatusBar
195
                 <StatusBar
196
+                    barStyle = 'light-content'
196
                     hidden = { true }
197
                     hidden = { true }
197
                     translucent = { true } />
198
                     translucent = { true } />
198
 
199
 

Laden…
Abbrechen
Speichern