TextInput不需要的下划线

时间:2018-02-05 04:53:42

标签: react-native textinput underline

我正在处理一个包含一些文本字段(textInput)的项目。我在这里遇到了textInput字段的问题。当我输入textInput字段时,文本有一个下划线,当我点击空格时,它会变得更暗,我想从中删除下划线。

以下是截图: enter image description here

这是我的代码:

<TextInput
  style={Style.InputStyle}
  multiline={true}
  placeholderTextColor={'#DC1938'}
  placeholder={'Name'}
  spellCheck={false}
  underlineColorAndroid='rgba(255,0,0,0.3)'
  inlineImageLeft='userred'
  inlineImagePadding={25}
  padding={15}
/>

3 个答案:

答案 0 :(得分:4)

尝试以下道具。

spellCheck={false}
autoCorrect={false}

请参阅以下链接:

disable spellcheck in react-native TextInput

答案 1 :(得分:1)

使用 underlineColorAndroid 道具

$addToSet

可以找到解释原因的原因here

enter image description here enter image description here

答案 2 :(得分:0)

大家好,我发现答案是autoCorrect prop。我禁用它,是的,它有效!