컴공생의 다이어리

[리액트 네이티브, react native] 경고창(warning) 숨기기 본문

Development/기타

[리액트 네이티브, react native] 경고창(warning) 숨기기

컴공 K 2021. 11. 24. 00:01

react native 경고창(warning) 숨기기

react native 코드를 작성후 시뮬레이터를 돌렸을 때 나오는 경고창을 숨기려면 index.js 파일에 아래 코드를 마지막에 삽입해주면 된다.

console.disableYellowBox = true;

 

 

https://machine-woong.tistory.com/280

 

리액트 네이티브 경고창 숨기기

render(){  console.disableYellowBox = true; }

machine-woong.tistory.com

 

728x90
Comments