TextInput 不需要的下划线

Har*_*n S 3 underline textinput react-native

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

这是一个屏幕截图: 在此输入图像描述

这是我的代码:

<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}
/>
Run Code Online (Sandbox Code Playgroud)

San*_*rma 5

尝试以下道具。

spellCheck={false}
autoCorrect={false}
Run Code Online (Sandbox Code Playgroud)

请参考以下链接:

在react-native TextInput中禁用拼写检查