Do you have a way of removing autocorrect from the TextInput?
Hi @timurridjanovic
Use textInputProps prop.
<GooglePlacesAutocomplete
...
textInputProps={{
autoCorrect: false
}}
/>
hi @myaskevich I can't fix auto correct in my app:

minLength={2} // minimum length of text to search
autoFocus={true}
fetchDetails={false}
onPress={this._onPress.bind(this)}
onCancelPress={this._onCancelPress.bind(this)}
getDefaultValue={() => {
return ''; // text input default value
}}
textInputProps={{
autoCorrect: false
}}
styles={{
description: {
....
/>
Most helpful comment
Hi @timurridjanovic
Use
textInputPropsprop.