19
React Native: Як вибрати наступний TextInput після натискання кнопки "next" на клавіатурі?
Я визначив два поля TextInput наступним чином: <TextInput style = {styles.titleInput} returnKeyType = {"next"} autoFocus = {true} placeholder = "Title" /> <TextInput style = {styles.descriptionInput} multiline = {true} maxLength = {200} placeholder = "Description" /> Але після натискання кнопки «наступний» на моїй клавіатурі мій рідний додаток не реагує на перехід …
202
ios
react-native