React_native:如何从TextInput中删除下划线

时间:2017-05-18 08:58:55

标签: reactjs react-native textinput

这是我的代码:

<TextInput borderBottomColor='#ffffff'
style={{flex:1, color:'#000000', fontSize:20, marginLeft:1, marginRight:5, paddingTop:1 }}></TextInput>

目前,它在EditText下方显示边框线,并在输入输入时显示下划线

我想删除文本中的边框线和下划线。 请提供一些解决方案。

2 个答案:

答案 0 :(得分:3)

您是否尝试过underlineColorAndroid='rgba(0,0,0,0)'

答案 1 :(得分:2)

我认为在你的情况下它发生在Android .. 你可以在underlineColorAndroid中添加透明属性。

underlineColorAndroid = 'transparent'

这将解决您的问题。