android - react-native android app中的“underlineColorAndroid不是有效的样式属性”错误-LMLPHP
我想从textInput组件中删除下划线样式。我使用了“underlineColorandroid”属性,但它不起作用。

最佳答案

underlineColorAndroid是textinput的一个属性,而不是react本机样式。
下面是一个如何使用它的示例:
<TextInput underlineColorAndroid={'transparent'} value={this.state.text} />

07-26 05:09