react-nativequicktype

How to hide QuickType from Keyboard in React Native TextInput


Is it possible to hide QuickType from keyboard in TextInput ? This


Solution

  • Disabling autocorrect also removes the QuickType suggestions:

     <TextInput
       onChangeText={(text) => this.setState({text})}
       value={this.state.text}
       autoCorrect={false}
     />