19
React Native: “Bir sonraki” klavye düğmesine bastıktan sonra sonraki TextInput nasıl seçilir?
İki TextInput alanını aşağıdaki gibi tanımladım: <TextInput style = {styles.titleInput} returnKeyType = {"next"} autoFocus = {true} placeholder = "Title" /> <TextInput style = {styles.descriptionInput} multiline = {true} maxLength = {200} placeholder = "Description" /> Ancak klavyemdeki "sonraki" düğmesine bastıktan sonra, yerel tepki uygulamam ikinci TextInput alanına atlamıyor. Bunu nasıl başarabilirim? …
202
ios
react-native