skip to Main Content

I am new to React Native so bear with me but does anyone know how to resolve this error? For some reason when I run my app on an older simulator it does not give me the error (image attached) but when I run it on a newer simulator it does. Thanks for the help!

Error showing unimplemented component

2

Answers


  1. Not a long term fix but for me downgrading to these versions, fixed the issue for me.

    • "react-native-screens": "3.35.0",
    • "@react-navigation/native": "6.1.18",
    • "@react-navigation/native-stack": "6.11.0",
    Login or Signup to reply.
  2. Try wrapping your component in a SafeAreaProvider tag

    import { SafeAreaProvider } from 'react-native-safe-area-context';
    
    export default App = () => {
    
      return (
        <SafeAreaProvider>
          <MainNavigation />
        </SafeAreaProvider>
      );
    }
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search