我想从textInput组件中删除下划线样式。我使用了“underlineColorandroid”属性,但它不起作用。 最佳答案 underlineColorAndroid是textinput的一个属性,而不是react本机样式。下面是一个如何使用它的示例:<TextInput underlineColorAndroid={'transparent'} value={this.state.text} />