chore: handle safe area insets better on android (skip e2e)

This commit is contained in:
Aman Harwara
2025-05-03 00:37:25 +05:30
parent a1d6a02c87
commit 2a3dd79da0
13 changed files with 152 additions and 11 deletions

View File

@@ -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>
)
}