라벨이 React Native인 게시물 표시

리액트 네이티브 모바일 키보드에서 다음 버튼으로 포커스(커서) 이동시키는 방법(How to make focus(cursor) move by using next button of mobile keyboard in React Native)

## 리액트 네이티브 모바일 키보드에서 다음 버튼으로 포커스(커서) 이동시키는 방법(How to make focus(cursor) move by using next button of mobile keyboard in React Native) 예를 들어, 모바일 로그인 화면에서 아이디를 입력하고 비밀번호를 입력해야 할 때, 키보드에서 다음 버튼을 누르면 비밀번호 입력칸으로 이동하게끔 만들려면 아래와 같이 하면 된다. ``` {this.passwordInput.focus();}} bulrOnSubmit={false} /> { this.passwordInput = input; }} /> ``` 참고 : https://stackoverflow.com/questions/32748718/react-native-how-to-select-the-next-textinput-after-pressing-the-next-keyboar

리액트 네이티브에서 style 을 조건에 따라 적용하는 법 (How to apply style with conditional in React Native)

## 리액트 네이티브에서 style 을 조건에 따라 적용하는 법 (How to apply style with conditional in React Native) 최근 리액트 네이티브 프로젝트에 참가하게 됐다. JavaScript 를 자주 쓰진 않아 상당히 어색하지만, 빠르게 적응하려고 노력 중이다. 작업 중 React Native에서 Style을 조건에 따라서 적용해야 하는 상황이 있었는데 다음과 같이 처리할 수 있다. ``` return ( Great! ) const styles = StyleSheet.create({ yellowContainer: { backgroundColor: '#fff000' }, greenContainer: { backgroundColor: '#08d13b' }, }) ```