标签: android react-native
我想从TextInput组件中删除下划线样式。我使用了“underlineColorAndroid”属性,但它不起作用。
答案 0 :(得分:47)
underlineColorAndroid是TextInput的支柱,而不是React Native风格。
underlineColorAndroid
以下是如何使用它的示例:
<TextInput underlineColorAndroid={'transparent'} value={this.state.text} />