작성
·
265
0
ch5에있는 Complete에있는 파일 그대로 복붙했습니다. 그런데
const onResponse = useCallback(async response
response에서 에러가 뜨네요..
TS7006: Parameter 'response' implicitly has an 'any' type.
가 뜹니다 어떻게 해야할까요?
답변 2
0
저도 궁금해서 찾다가 해결 방법 공유 드려요.
image 인터페이스 가져와서 쓰시면 되는데, 변수명이 중복되니 편한 변수명으로 변경하시면 됩니다.
import ImagePicker, {
Image as ImagePickerImage,
} from 'react-native-image-crop-picker';
async (response: ImagePickerImage)
0
ERROR TypeError: null is not an object (evaluating 'ImageCropPicker.openPicker')
ERROR Invariant Violation: Module AppRegistry is not a registered callable module (calling runApplication). A frequent cause of the error is that the application entry file path is incorrect.
This can also happen when the JS bundle is corrupt or there is an early initialization error when loading React Native.
ERROR Invariant Violation: Module AppRegistry is not a registered callable module (calling runApplication). A frequent cause of the error is that the application entry file path is incorrect.
This can also happen when the JS bundle is corrupt or there is an early initialization error when loading React Native.
async (response: any) => { 로 바꾸세요. 앞으로는 다 이렇게 바꾸셔야 합니다. react 18 버전으로 실습 진행하신다면요. 제 강좌 버전과 달라서 발생한 문제는 스스로 책임지셔야 합니다. 아니라면 17버전으로 하셔야 하고요.
그리고 null is not an object 이 에러는 다른 에러입니다.