Closed
Description
react-native: 0.53.0
react: 16.2.0
I am using this
<TextInput
placeholder={this.props.placeholder}
editable={this.props.editable}
placeholderTextColor={this.props.placeholderTextColor}
maxLength={this.props.maxLength}
returnKeyType={this.props.returnKeyType}
keyboardType={this.props.keyboardType}
value={this.props.value}
autoFocus={true}
autoCapitalize={this.props.autoCapitalize}
onChangeText={this.props.onChangeText}
secureTextEntry={this.props.secureTextEntry}
underlineColorAndroid={(this.props.error !== '' ? "red" : Colors.AQUA_ISLAND)}
onSubmitEditing={this.props.onSubmitEditing}
/>
When I set autofocus to false there is no issue