Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 백준
- babel.config.js
- 리액트 네이티브 에러
- 리엑트 네이티브 아이콘
- 리액트
- 문자열 대소문자
- 문자열 대소문자 구별
- react native 세팅
- Next.js
- react native
- react native CLI
- firebase 라이브러리
- aws bucket 정책
- s3 upload
- Project
- react native font
- React
- Access Key 생성
- GIT
- js
- 에러
- fire base
- img upload
- AWS Access Key
- PongWorld
- react native 개발
- error
- AWS
- react native picker
- 리액트 네이티브
Archives
- Today
- Total
밝을희 클태
[react native / 리액트 네이티브] 에러 Error: GestureDetector must be used as a descendant of GestureHandlerRootView. Otherwise the gestures will not be recognized. See https://docs.swmansion.com/react-native-gesture-handler/docs/installation fo.. 본문
마모리(My Memory) 프로젝트
[react native / 리액트 네이티브] 에러 Error: GestureDetector must be used as a descendant of GestureHandlerRootView. Otherwise the gestures will not be recognized. See https://docs.swmansion.com/react-native-gesture-handler/docs/installation fo..
huipark 2023. 7. 13. 18:48react native와 라이브러리들을 업데이트하고 나니
GestureDetector must be used as a descendant of GestureHandlerRootView. Otherwise the gestures will not be recognized. See https://docs.swmansion.com/react-native-gesture-
이런 오류가 난다
GestureDetector는 GestureHandlerRootView의 자식으로 사용되어야 한다
해결 방안
import { GestureHandlerRootView } from 'react-native-gesture-handler';
export default function App() {
return (
<GestureHandlerRootView style={{flex: 1}}>
...
</GestureHandlerRootView>
);
}
최상위 컴포넌트를
GestureHandlerRootView 로 감싸 준다