반응형
1. reactNative 에서 using typeScript 부분 명령어 입력
https://reactnative.dev/docs/typescript
요 아래 명령어 입력 전 어떤 위치에 해당 프로젝트를 시작할지 미리 경로 들어가있기
$ npx react-native init [MyApp name] --template react-native-template-typescript
-> react-native 등 필요한 것들을 모두 설치가 자동으로 된다.
** 만약 xcode가 설치되지 않은 상태라면 에러가 나온다.
자세한 해결법은 아래에 👇
https://blckchainetc.tistory.com/386
해당 프로젝트의 ios 폴더에 들어가서 "$pod install" 을 해야 한다.
$ npm i @types/react-native --save-dev
types/react-native도 설치해주기
2. ios 켜보기
어플 프로젝트에 들어와서 아래 명령어 입력
$ npm run ios
이렇게 아이폰이 켜진다.
그리고 하늘색의 React-native 창이 보인다.
이제 기초 윤곽을 잡을 components (screens)를 만들고 render하려는데 나온 에러
"RNSScreenStackHeaderConfig" was not found in the UIManager.
해결법 :
https://blckchainetc.tistory.com/385
이제 ios 시뮬레이터가 켜지고 App.js의 내용을 수정하면 바로 수정이 된다.
반응형