There is styling issue on android which shows underline in the text input. For solution the underlineColorAndroid="transparent" prop should be used ;
ref="textInput"
autoFocus={this.props.autoFocus}
style={[defaultStyles.textInput, this.props.styles.textInput]}
onChangeText={onChangeText ? text => {this._onChangeText(text); onChangeText(text)} : this._onChangeText}
value={this.state.text}
placeholder={this.props.placeholder}
placeholderTextColor={this.props.placeholderTextColor}
onFocus={onFocus ? () => {this._onFocus(); onFocus()} : this._onFocus}
clearButtonMode="while-editing"
underlineColorAndroid="transparent"
/>
Hi @RajanPN
Cool.
Could you please submit a PR and i'll merge it?
Thanks
This solution worked for me:
textInputProps={{underlineColorAndroid:'rgba(0,0,0,0)'}}
@RajanPN Check out underlineColorAndroid prop in v1.2.8
Most helpful comment
This solution worked for me:
textInputProps={{underlineColorAndroid:'rgba(0,0,0,0)'}}