Explore Library
Code QuizBeginner

SafeAreaView Usage

Learn that SafeAreaView must be imported to avoid device notches.

Codejavascript
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?