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>

发布了255 篇原创文章 · 获赞 39 · 访问量 35万+

猜你喜欢

转载自blog.csdn.net/kangguang/article/details/79972804