chore: handle safe area insets better on android (skip e2e)
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
import React from 'react'
|
||||
import { MobileWebAppContainer } from './MobileWebAppContainer'
|
||||
|
||||
const AppComponent: React.FC = () => {
|
||||
return <MobileWebAppContainer />
|
||||
}
|
||||
import { SafeAreaProvider } from 'react-native-safe-area-context'
|
||||
|
||||
export const MobileWebApp = () => {
|
||||
return <AppComponent />
|
||||
return (
|
||||
<SafeAreaProvider>
|
||||
<MobileWebAppContainer />
|
||||
</SafeAreaProvider>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user