瀏覽代碼

fix: respect safe area in conference on ios

j8
Bettenbuk Zoltan 5 年之前
父節點
當前提交
3ff658a13b
共有 1 個檔案被更改,包括 3 行新增3 行删除
  1. 3
    3
      react/features/conference/components/native/Conference.js

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

@@ -1,7 +1,7 @@
1 1
 // @flow
2 2
 
3 3
 import React from 'react';
4
-import { NativeModules, SafeAreaView, StatusBar, View } from 'react-native';
4
+import { NativeModules, SafeAreaView, StatusBar } from 'react-native';
5 5
 import LinearGradient from 'react-native-linear-gradient';
6 6
 
7 7
 import { appNavigate } from '../../../app';
@@ -279,7 +279,7 @@ class Conference extends AbstractConference<Props, *> {
279 279
                         </TintedView>
280 280
                 }
281 281
 
282
-                <View
282
+                <SafeAreaView
283 283
                     pointerEvents = 'box-none'
284 284
                     style = { styles.toolboxAndFilmstripContainer }>
285 285
 
@@ -320,7 +320,7 @@ class Conference extends AbstractConference<Props, *> {
320 320
                       */
321 321
                         _shouldDisplayTileView ? undefined : <Filmstrip />
322 322
                     }
323
-                </View>
323
+                </SafeAreaView>
324 324
 
325 325
                 <SafeAreaView
326 326
                     pointerEvents = 'box-none'

Loading…
取消
儲存