19
네이티브 반응 :“다음”키보드 버튼을 누른 후 다음 TextInput을 선택하는 방법?
두 개의 TextInput 필드를 다음과 같이 정의했습니다. <TextInput style = {styles.titleInput} returnKeyType = {"next"} autoFocus = {true} placeholder = "Title" /> <TextInput style = {styles.descriptionInput} multiline = {true} maxLength = {200} placeholder = "Description" /> 그러나 키보드에서 "다음"버튼을 누른 후 반응 네이티브 앱이 두 번째 TextInput 필드로 이동하지 않습니다. 어떻게하면 …
202
ios
react-native