밝을희 클태

[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:48

react 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-

이런 오류가 난다
GestureDetectorGestureHandlerRootView의 자식으로 사용되어야 한다

해결 방안

import { GestureHandlerRootView } from 'react-native-gesture-handler';



export default function App() {

  return (

    <GestureHandlerRootView style={{flex: 1}}>

...

    </GestureHandlerRootView>

  );

}

최상위 컴포넌트를
GestureHandlerRootView 감싸 준다