I have a React-native
app with TextInput
and KeyboardAvoidingView
. And everywhere it works well except android Samsung devices, especially Samsung A3. Because on this device the keyboard is appearing without a comma, but I need to use it on the screen.
I already tried the steps from this article, removed autoCapitalize="none"
from the TextInput
component, but it is not working for me.
Can somebody recommend how can I solve it please.[
<TextInput
style={textInput}
placeholder={props.placeholder}
underlineColorAndroid='transparent' editable={!props.disabled}
keyboardType={keyboardType}
autoCorrect={false} selection={state.position}
value={state.value} onChangeText={this._onChangeText}
onFocus={this._onFocus} onBlur={this._onBlur}
autoFocus={autoFocus}
/>