My App has no color left and right from the notch, when using iPhone horizontal and when I refresh the site (move down then there is no color over the navbar).
I tried to fix this by
Anyone knows how to make area around notch same color as navbar and why SafeAreaView not working for me?
import { SafeAreaView } from 'react-native';
function App() {
return (
<SafeAreaView>
<Router>
<ScrollToTop />
<Header />
<Pages />
<Footer />
</Router>
</SafeAreaView>
);
}
export default App;