diff --git a/app/views/JitsiMeetView.tsx b/app/views/JitsiMeetView.tsx index 54ec76278..a5098efc3 100644 --- a/app/views/JitsiMeetView.tsx +++ b/app/views/JitsiMeetView.tsx @@ -1,6 +1,6 @@ import { activateKeepAwake, deactivateKeepAwake } from 'expo-keep-awake'; import React from 'react'; -import { BackHandler, NativeEventSubscription } from 'react-native'; +import { BackHandler, NativeEventSubscription, SafeAreaView } from 'react-native'; import { isAppInstalled, openAppWithUri } from 'react-native-send-intent'; import WebView from 'react-native-webview'; import { WebViewMessage, WebViewNavigation } from 'react-native-webview/lib/WebViewTypes'; @@ -82,16 +82,18 @@ class JitsiMeetView extends React.Component { render() { return ( - this.onNavigationStateChange(nativeEvent)} - onNavigationStateChange={this.onNavigationStateChange} - style={{ flex: 1 }} - userAgent={userAgent} - javaScriptEnabled - domStorageEnabled - mediaPlaybackRequiresUserAction={false} - /> + + this.onNavigationStateChange(nativeEvent)} + onNavigationStateChange={this.onNavigationStateChange} + style={{ flex: 1 }} + userAgent={userAgent} + javaScriptEnabled + domStorageEnabled + mediaPlaybackRequiresUserAction={false} + /> + ); } }