-
Notifications
You must be signed in to change notification settings - Fork 25.3k
iOS Dictation not usable in TextInput #20778
Copy link
Copy link
Closed
Labels
Component: TextInputRelated to the TextInput component.Related to the TextInput component.Platform: iOSiOS applications.iOS applications.Ran CommandsOne of our bots successfully processed a command.One of our bots successfully processed a command.Resolution: LockedThis issue was locked by the bot.This issue was locked by the bot.
Description
Activity
Metadata
Metadata
Assignees
Labels
Component: TextInputRelated to the TextInput component.Related to the TextInput component.Platform: iOSiOS applications.iOS applications.Ran CommandsOne of our bots successfully processed a command.One of our bots successfully processed a command.Resolution: LockedThis issue was locked by the bot.This issue was locked by the bot.
Description
Focus in the TextInput, choose dictation and start recording
Only First word is input to TextInput
if _.debounce is used, multiple words can be displayed but still not showing the full text in the recording. Keyboard input may has issue after _.debounce is used.
Reproducible Demo
Simply use component in a View,
<TextInput
onChangeText={(username) => this.setState({username})}
value={this.state.username}
/>
Choose Dictation in the keyboard view,
Start recording and wait for recognition
->issue reproduced