fix: respect safe area in conference on ios

This commit is contained in:
Bettenbuk Zoltan 2019-11-06 18:52:58 +01:00 committed by Zoltan Bettenbuk
parent 3a46513d4b
commit 3ff658a13b
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
// @flow // @flow
import React from 'react'; import React from 'react';
import { NativeModules, SafeAreaView, StatusBar, View } from 'react-native'; import { NativeModules, SafeAreaView, StatusBar } from 'react-native';
import LinearGradient from 'react-native-linear-gradient'; import LinearGradient from 'react-native-linear-gradient';
import { appNavigate } from '../../../app'; import { appNavigate } from '../../../app';
@ -279,7 +279,7 @@ class Conference extends AbstractConference<Props, *> {
</TintedView> </TintedView>
} }
<View <SafeAreaView
pointerEvents = 'box-none' pointerEvents = 'box-none'
style = { styles.toolboxAndFilmstripContainer }> style = { styles.toolboxAndFilmstripContainer }>
@ -320,7 +320,7 @@ class Conference extends AbstractConference<Props, *> {
*/ */
_shouldDisplayTileView ? undefined : <Filmstrip /> _shouldDisplayTileView ? undefined : <Filmstrip />
} }
</View> </SafeAreaView>
<SafeAreaView <SafeAreaView
pointerEvents = 'box-none' pointerEvents = 'box-none'