删除 React Native 中 inputText 中的下划线

新手上路,请多包涵

我无法删除输入文本中的下划线

在此处输入图像描述

原文由 Nima 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 473
2 个回答

如果您仍在寻找解决方案并且 underlineColorAndroid='transparent' 不能解决问题,请尝试 autoCorrect={false}

例子 :

 <TextInput autoCorrect={false} underlineColorAndroid='transparent' placeholderTextColor={Colors.gray} style={styles.input} autoCapitalize='characters' placeholder="Type your word" />

原文由 Sandeep Amarnath 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题