Code QuizIntermediate

StatusBar backgroundColor Does Nothing on iOS

Find why this status bar color only works on Android.

Codejavascript
import { StatusBar } from 'react-native';

export default function Screen() {
  return (
    <StatusBar
      backgroundColor="#6200EE"
      barStyle="light-content"
    />
  );
}

The colored status bar background appears on Android but not on iOS. What is the bug?