在使用TextInput的时候,ios是正常的,安卓则会出现一个下划线,去掉的方法就是:
underlineColorAndroid='transparent'
使用场景
<TextInput
clearButtonMode='while-editing'
selectionColor="black"
keyboardType="number-pad"
placeholder={'请输入手机号'} style={styles.passwordStyle}
onChangeText={(text) => {this.setState({telephone:text})}}
underlineColorAndroid='transparent'
/>