dealing-with-react-native icon indicating copy to clipboard operation
dealing-with-react-native copied to clipboard

리액트 네이티브를 다루는 기술

Results 10 dealing-with-react-native issues
Sort by recently updated
recently updated
newest added

React Native 0.71 이상 버전부터 프로젝트를 만들 때 TypeScript 환경을 만들어집니다. TypeScript는 12장부터 다루므로 그 전에 프로젝트를 만들땐 ``` npx react-native init LearnReactNative --version 0.70 ``` 와 같이, `--version 0.70`...

2쇄

기존에 댓글 조회하기 부분에 handler 가 잘못설정되어있었습니다. ```diff { "method": "GET", "path": "/articles/:articleId/comments", - "handler": "article.find", + "handler": "comment.find" ```

2쇄

components/PostCard.js ``` return ( source={ user.photoURL ? { uri: user.photoURL, } : require("../assets/user.png") } resizeMode="cover" style={styles.avatar} /> ... ... ``` 책에는 컴포넌트가 없습니다. 확인 부탁드립니다 :) p516

안녕하세요 책 보면서 따라하고 있는 독자 입니다. 8장에서 시작부터 막혀서 진행을 못하고 있습니다. 아주 간단하게 IOS에 Firebase 설치하고 실행하는 것만 해보고 싶은데 오류가 납니다. 현재 설치된 버전 입니다. "dependencies": {...

```js remove(state, action) { const index = state.findIndex(todo => todo.id === action.payload) state.splice(index) }, ``` 책에 나온 remove 함수 부분인데요, `flter()`로 하면 제대로 되는데 `splice()`로 했을 때, 두번째 아이템부터는 괜찮은데...

https://github.com/velopert/dealing-with-react-native/discussions/23 잘못 import 하는 코드가 포함됨 ```js import {SafeAreaProvider, SafeAreaView} from 'react-native-safe-area-context'; ``` 이렇게 불러오기

1쇄

### Discussed in https://github.com/velopert/dealing-with-react-native/discussions/7 Originally posted by **JeesubKim** December 13, 2021 ``` function CustomButton({onPress, title, hasMarginBottm}){ return (

1쇄

### Discussed in https://github.com/velopert/dealing-with-react-native/discussions/1 Originally posted by **cotingmaster** November 18, 2021 안녕하세요, 정말 너무 좋은 책으로 찾아와주셔서 감사합니다. 요즘 혹시 react-native-image-picker 에서는 manifest.xml 파일에 use permissions을 적어주지 않아도 되는 것인지...

### Discussed in https://github.com/velopert/dealing-with-react-native/discussions/1 Originally posted by **cotingmaster** November 18, 2021 안녕하세요, 정말 너무 좋은 책으로 찾아와주셔서 감사합니다. 요즘 혹시 react-native-image-picker 에서는 manifest.xml 파일에 use permissions을 적어주지 않아도 되는 것인지...

1쇄

프로젝트 생성 명령어 변경 ``` yarn config set ignore-engines true npx [email protected] articles-server --quickstart ``` strapi v4로 업데이트를 하려고 했지만 v4는 정말 별로입니다..! 정말 많이 안정화가 되고 docs가 더 성숙해지지...

1쇄