프론트엔드 앱/React-native

React Native typescript 프로젝트 만들때 초기셋팅

세리둥절 2021. 11. 25. 14:56
반응형

React Native로 프로젝트를 만들 때 초기에 셋팅해야하는 것들이 있는데, 할 때마다 새로 찾아보기가 귀찮아서 한 번에 정리해놓고 할 때마다 복사해서 쓰려고 한다

npx react-native init [프로젝트명] --template react-native-template-typescript

cd [프로젝트명]
yarn add @react-navigation/native
yarn add @react-native-screens react-native-safe-area-context
yarn add @react-navigation/native-stack @react-navigation/bottom-tabs

yarn add react-native-vector-icons @types/react-native-vector-icons

yarn add @react-native-async-storage/async-storage

yarn add react-query axios @types/axios


npx pod-install
반응형