在 react-native TextInput 框中显示一行,如何删除它
Posted
技术标签:
【中文标题】在 react-native TextInput 框中显示一行,如何删除它【英文标题】:In react-native TextInput box show a line, how to removed it 【发布时间】:2017-11-09 17:18:11 【问题描述】:我的 React-native APP 我制作了一个输入框,但我在输入框中得到了一行...我该如何删除它?
<View style=styles.inputContainer>
<TextInput style=styles.input onChangeText=(text) => this.setState(editTodoVal: text) value=this.state.editTodoVal/>
</View>
风格:
inputContainer:
marginTop: 5,
padding: 10,
flexDirection: 'row'
,
input:
height: 40,
padding: 4,
marginRight: 5,
flex: 6,
fontSize: 18,
borderWidth: 1,
borderColor: '#fff',
backgroundColor: '#fff',
borderRadius: 1,
color: '#000',
,
请查看我的图片以获取更多降神信息:
【问题讨论】:
【参考方案1】:默认情况下它带有下划线,如果您需要删除,请使用:underlineColorandroid='transparent'
。另请查看documentation 了解更多信息。
【讨论】:
@jigar_shah 谢谢它的工作,但是 ios 呢。 我认为IOS不会有任何问题。以上是关于在 react-native TextInput 框中显示一行,如何删除它的主要内容,如果未能解决你的问题,请参考以下文章
react-native: <TextInput/> 删除键盘预测
在 react-native 中更改 TextInput 焦点的 underlineColorAndroid
在键盘感知滚动视图中的 textInput 后按下 React-Native 按钮
react-native中textInput在androidTV上的焦点处理(坑篇)