Learn that SafeAreaView must be imported to avoid device notches.
import React from 'react'; import { View, Text } from 'react-native'; export default function Screen() { return ( <SafeAreaView> <Text>Content</Text> </SafeAreaView> ); }
What is the bug in this code?