리액트2 [React Native] 특정 스크린에서 하드웨어 뒤로가기 방지하기 회원가입이라던지 특정한 상황일 경우 예외적으로 하드웨어의 뒤로가기를 방지해야 할 때가 있다. 이때 사용하는 방법을 소개하려고 한다. 필요한 라이브러리: react navigation v5 const routesParams = useRoute(); ... useFocusEffect( React.useCallback(() => { const onBackPress = () => { if (routesParams.name === '특정페이지') { return true; } else { return false; } }; return () => BackHandler.removeEventListener('hardwareBackPress', onBackPress); }, [routesPa.. 2021. 9. 24. [React] Element UI 체크박스 적용 onChange에서 매개변수로 의 name값을 받게 되어있는데, 에 name속성을 사용하니까 빨간줄이 생기면서 에러 출력... No overload matches this call. index.d.ts 파일을 까보니까 name이 없었다... 프레임워크 UI가 이럴수가 있구나...ㅎ 더보기를 열면 주석해놓은 name 부분이 없어서 추가한 것. 더보기 // Checkbox interface CheckboxProps extends ElementReactLibs.ComponentProps { label?: string trueLabel?: string | number falseLabel?: string | number disabled?: boolean checked?: boolean // name?: strin.. 2021. 3. 24. 이전 1 다음