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

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

    </TextInput>

    {this.rightView()}
</View>


React Native 之 TextInput组件去掉下划线


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

    </TextInput>

    {this.rightView()}
</View>
React Native 之 TextInput组件去掉下划线

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-08
  • 2022-12-23
  • 2022-12-23
  • 2021-09-09
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-04-21
  • 2022-01-24
  • 2021-08-20
  • 2021-10-13
  • 2021-06-30
  • 2021-09-11
  • 2022-12-23
相关资源
相似解决方案