개발일기

코드리뷰//

코드미뇽 2021. 7. 20. 13:53

console.disableYellowBox 

console.disableYellowBox = true;

YellowBox 같은 무시되어도 앱이 실행이되는데 이상이 없는 에러들이 많이있는데 그것들을 무시할 수 있는 방법이 있다.

 

console.ignoredYellowBox = ["Warning: Each", "Warning: Failed"];

 Warning : Each 

Warning : Failed 

각각에 대해서만 선택적으로 무시도 가능하다..는것같다.

 

 

 

 

 

 

 

 

 

https://codedaily.io/tutorials/Disable-the-Yellow-Box-in-React-Native

 

Disable the Yellow Box in React Native

The Yellow warning box in React Native can be both helpful and annoying. There are many errors that can be ignored but end up blocking necessary pieces of the application.The Yellow warning box in React Native can be both helpful and annoying. There are ma

codedaily.io


useEffect 

 

 

작성중...

 

 

 

 

 

 

 

 

 

 

https://jade-kim.github.io/hybrid-app/React-useEffect/

 

리액트 useEffect 사용법

React useEffect 를 사용하여 메인 화면을 클릭 할 때 마다 함수 실행하기, 로그인 상태가 변경될 때 마다 특정 함수 실행하기

jade-kim.github.io