본문 바로가기

native

Create Expo + ReactNative + Typescript Manually I can make Expo + ReactNative + Typescript via below script easily.]$ create-react-native-app {{APP_NAME}} --scripts-version=react-native-scripts-tsBut, Sometimes I need setup typescript manually.Here the solution !]$ yarn add -D typescript tslib @types/react @types/react-native @types/expoWrite App.js file below..import AppContainer from "./src/AppContainer"; export default AppContainer;Make sr.. 더보기
Create ReactNative + Typescript App project ]$ yarn global add create-react-native-app]$ create-react-native-app {{APP_NAME}} --scripts-version=react-native-scripts-tsReactJS 웹프로젝트 생성해주듯이 Native 용 프로그램인 create-react-native-app을 설치해준다. 이해 해당 cli를 이용하여 --scripts-version=react-native-scripts-ts 옵션을 줘서 프로젝트를 생성해준다.생성해준 후 기존 expo 환경에서의 개발이 편하다면 scripts들에 명령들을 생성해주어 기존 CRNA를 통해 작업했을 때와 동일하게 작업이 가능하다. "scripts": { "start": "expo start", "eject":.. 더보기
Spec 개인 프로젝트를 진행해 보자고 결심하였으며, 거기에 맞춰 첫번째 어플을 개발하고 나서그 개발기를 작성해보고자 이 블로그를 시작하게 되었다. - 어플명 : 픽무비(PickMovie)- 기능 1. 일별 국내 박스오피스 순위를 추출하여 해당 순위를 보여줌. (2003년 11월 11일 ~ 이후) 2. 하루에 하나씩 영화를 추천해 줌. (추천 기준은 랜덤한 날짜를 찍어 그 날짜에 3위 안에 들어간 영화중 평점이 8점 이상인 영화) 3. 영화 장르별 검색 기능 제공. 4. 영화 제목으로 검색 기능 제공. 5. 출연한 배우별 검색 기능 제공. 6. 각 검색에 모두 정렬 기능을 제공. 7. 영화 선택시 네이버 영화 상세 페이지 제공. 8. 어플 하단에 AdMob 추가하기. (수익모델) - 시스템 스펙서버는 linode.. 더보기