/* SafeAreaView it's a react native component that allows you to ensure that
your content is visible for all ios devices screens */
import { SafeAreaView } from 'react-native'; // import it like this
<SafeAreaView> // use it later like this
// some content
</SafeAreaView>