728x90
반응형

React Native 96

ref 사용법

ref 사용법 class AutoFocusText extends React.Component{ constructor(props){ this.textRef = React.createRef() } componentDidMount(){ console.log(this.textRef.current.state) this.textRef.current.focusTextInput() } render(){ return( ) } } 부모클래스에서 자식클래스의 함수를 호출하기 -커스텀 컴포넌트의 ref는 해당 컴포넌트의 인스턴스를 가르킨다 -인스턴스 이므로 모든 데이터와 함수를 가져올수 있다 class CustomTextInput extends React.Component { constructor(props) { this.i..

React Native 2020.06.24

react native 화면이동

// 스텍에 쌓고 이동하기 ( 뒤로가기시 페이지로 돌아옴 ) this.props.navigation.navigate('스크린 이름 ') // 이전페이지로 돌아가기 ( 위의 navigate 를 이용하여 이동한 경우 가능 payLoad 가 2개 이상인 경우에 가능 하다 ) this.props.navigation.pop(); // 스텍의 제일 윗 페이지로 이동 this.props.navigation.popToTop() // 새롭게 컴포넌트를 스텍이 쌓는다. ( 이전에 스텍에 쌓여있으면 그걸 불러온다 ) this.props.navigation.push(); // 스텍쌓지 않고 이동하기 ( 뒤로가기시 이전페이지로 돌아갈 수 없음 ) this.props.navigation.replace('스크린이름') // 중첩된..

React Native 2020.06.06
728x90
반응형