React Native with Typescript 3

[ReactNative-3] Image Picker 사용해서 원하는 프레임에 사진 업로드

참고한 자료는 https://github.com/dev-yakuza/react-native-image-picker-example/blob/master/src/App.tsx GitHub - dev-yakuza/react-native-image-picker-example Contribute to dev-yakuza/react-native-image-picker-example development by creating an account on GitHub. github.com 이전 버전으로 작성되어있던 터라 버전을 업데이트 하면서 몇가지를 수정해줘야 했다. 먼저 styled-components를 다운로드 받아서 사용하는데, react18과 버전 충돌이 있어서 styled-components를 --force f..

[ReactNative-2] Component Style

View, SafeAreaView, ScrollView, KeyboardAvoidingView 등 View가 들어간 component들이 제공됨. react-native-paper 패키지: google material design의 ~colors.blue500 형태로 컬러 표기 가능함. View component 속성 1. view component의 width, height 설정 방법 default 방식: parent component의 width 를 그대로 설정하고, height는 child component 의 height에 의해 결정된다. px 숫자 설정 Parent component의 width, height를 기준으로 자식 컴포넌트의 크기를 퍼센트로 설정하는 방법 flex 속성을 사용하는 방법..

[ReactNative-1] Mobile App 개발 시작

Mac 용 ReactNative 개발 세팅 완료! [Trouble shooting]예제 실행 시 com.github.facebook.watchman.plist for write: Permission denied에러가 남. 해결 방법 https://github.com/facebook/react-native/issues/9116 참고함. sudo chown -R $(whoami):staff ~/Library/LaunchAgents DOM과 렌더링 Document Object Model(DOM) 는 HTMLDivElement 클래스의 instance. 이런 클래스를 DOM이라 부르고 DOM클래스의 인스턴스를 DOM 객체라 한다. DOM 객체는 부모/자식 형태의 tree structure를 이룬다. 이를 DOM..