react-native 로 앱 개발 도중, navigation 초기세팅을 하다 발생한 오류이다.
Error: Requiring unknown module "undefined". If you are sure the module exists, try restarting Metro. You may also want to run yarn or npm install
react-native-screens
패키지 누락으로 인해 발생한 문제였다.
yarn add react-native-screens
로 해결했다.
https://github.com/react-navigation/react-navigation/issues/10065