RN-TextInput 去掉安卓下划线

在使用TextInput的时候,ios是正常的,安卓则会出现一个下划线,去掉的方法就是:

underlineColorAndroid='transparent'

使用场景

 {this.setState({telephone:text})}}
                        underlineColorAndroid='transparent'
                    />

你可能感兴趣的:(RN-TextInput 去掉安卓下划线)