- Export namespace should be first transformed by `@babel/plugin-proposal-export-namespace-from`.
babel.config.js 파일에 아래 코드를 추가
module.exports = { ...
plugins: ['react-native-reanimated/plugin'],
... };
엑스포 socket time out 해결방법 총정리 !!!!!!
일단 엑스포는 개발환경과 테스트 디바이스가 같은 네트워크 안에 있어야함
방법 1.
Cmd 에서
set REACT_NATIVE_PACKAGER_HOSTNAME=my-custom-ip-address
방법2.
터미널 에서
$ ipconfig
IPv4 주소 . . . . . . . . . : 172.***.25.42
한 주소를 사용하여
Cmd 에서
set REACT_NATIVE_PACKAGER_HOSTNAME=173.***.45.89
방법3.
깃배쉬에서 엑스포 캐시 지워보기
expo start -c
마지막 방법
핫스팟 사용하거나 , 다른 장소로 이동해 시도
- VirtualizedLists should never be nested inside plain ScrollViews with the same orientation - use another VirtualizedList-backed container instead
- 스크롤뷰안에 flatlist 를 쓸 수 없어 발생하는 에러
- navigation.setoptions cannot update a component (`nativestacknavigator`)
- Cannot update a component BrowserRouter while rendering a different component
상황: Navigation 의 HeaderTitle 을 setOptions 함수를 이용해 변경하려 했을때 발생
해결: useLayoutEffect 사용하여 화면 출력전에 적용하여 해결
useLayoutEffect(() => {
navigation.setOptions({
headerTitle: route.params.headerTitle ,
});
}, [navigation]);
*-도움이 되셨다면 공감을 눌러주세요-*
< IT연구소 쿠키 랩 />
댓글