react-native android app中的“underlineColorAndroid不是有效的样式属性”错误

时间:2016-02-22 14:48:06

标签: android react-native

enter image description here

我想从TextInput组件中删除下划线样式。我使用了“underlineColorAndroid”属性,但它不起作用。

1 个答案:

答案 0 :(得分:47)

underlineColorAndroid是TextInput的支柱,而不是React Native风格。

以下是如何使用它的示例:

<TextInput underlineColorAndroid={'transparent'} value={this.state.text} />