728x90
반응형

전체 글 624

RN 을 좀 더 빠르게 만들어보자

1. 생성자에 연산이 오래 걸리는 것을 두지말자 - componentDidMount 에 두도록 한다. 2. 불필요한 re 랜더링 금지 3. 자식 컴포넌트에 불필요한 prop 전달 하지 않기 ( 계속 랜더링 하기 때문 ) - onPress 에 화살표 기능을 되도록 피한다. onPress = {()=> this.functionName()} 4. shouldComponentUpdate 를 되도록 사용하자 5. render() 와 return 사이에 많은것을 두려고 하지 말자, 차라리 컴포넌트화 시켜서 호출하도록 하자.

개인 공부 2020.04.20

FlexBox

flexDirection controls the direction in which the children of a node are laid out. This is also referred to as the main axis. The cross axis is the axis perpendicular to the main axis, or the axis which the wrapping lines are laid out in. row - 가로로 배치 ( 좌 -> 우 ) column (default value) - 기본 세로 ( 위 -> 아래 ) row-reverse - 가로로 배치 ( 우 -> 좌) column-reverse - 세로로 배치 ( 아래 -> 위 ) justifyContent - 진행 하는 방향..

React Native 2020.03.09
728x90
반응형