목록React native (20)
jineecode
*RN 0.60 이후 버전에서는 다음 명령어로 설치한다. 그 후 ios에서 필요한 라이브러리를 설치한다. 안드로이드에서는 추가 설치할 필요가 없다. npm install --save @react-native-community/async-storage cd ios pod install
함수형 1. button component https://fonts.google.com/icons?selected=Material+Icons Google Fonts Making the web more beautiful, fast, and open through great typography fonts.google.com add_circle, remove_circle 사용 RN에서는 이미지 이름을 add.png, add@2x.png, add@3x.png 으로 이름을 변경해두면 해당 화면 사이즈에 맞는 이미지를 자동으로 불러온다. src/Components/Button/index.tsx import React from 'react'; import Styled from 'styled-components/nat..
1. 홈브루 설치 맥에서 패키지를 설치하고 관리할 수 있는 맥용 패키지 관리자 brew --version brew의 버전이 뜨지 않는다면 https://brew.sh 으로 들어가서 설치 명령어를 터미널에 입력한다. Homebrew The Missing Package Manager for macOS (or Linux). brew.sh /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 2. node.js brew install node@12 node --version v12.6.0 node13을 사용하면 안드로이드 실행시 문제가 발생했던 이슈가 있었던 모양. 직접 확인된 바는 없습니다. ..
1. mac 위에서 nvm 설치 가급적 설치하지마세요. 빌드 오류의 주범입니다. https://gist.github.com/falsy/8aa42ae311a9adb50e2ca7d8702c9af1 NVM(Node Version Manager) 맥OS에서 설치 & 사용하기 NVM(Node Version Manager) 맥OS에서 설치 & 사용하기. GitHub Gist: instantly share code, notes, and snippets. gist.github.com $ sudo curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash $ vi ~/.bash_profile //i 누르고 (insert) expo..