React Native 之 TextInput组件去掉下划线

前端之家收集整理的这篇文章主要介绍了React Native 之 TextInput组件去掉下划线前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在使用RN开发中,TextInput 组件使用,iOS 没有下划线 而安卓有下划线 ,特此需要设置

<View style ={ETTLogStyles.log_input_top}>
    <TextInput style ={this.inputStyle()} placeholder={this.placeholder() }>

    </TextInput>

    {this.rightView()}
</View>




<View style ={ETTLogStyles.log_input_top}>
    <TextInput style ={this.inputStyle()} placeholder={this.placeholder() } underlineColorAndroid='transparent'>

    </TextInput>

    {this.rightView()}
</View>
原文链接:https://www.f2er.com/react/301662.html

猜你在找的React相关文章