react-native-floating-labels icon indicating copy to clipboard operation
react-native-floating-labels copied to clipboard

Default border bottom is appearing in android.

Open Sonukr opened this issue 7 years ago • 2 comments

When the app is initialized, each time it is showing default android green color border at bottom of the text input. screen shot 2017-09-08 at 4 34 17 pm

But, if I am reloading the app, it's working fine as the style I wrote for the input.

Sonukr avatar Sep 08 '17 11:09 Sonukr

I fixed it using the prop underlineColorAndroid={'rgba(0, 0, 0, 0)'}

JonathanRufino avatar Sep 18 '18 13:09 JonathanRufino

I fixed it using the prop underlineColorAndroid={'rgba(0, 0, 0, 0)'}

A 'transparent' value is better in my case:

  <FloatingLabel
    underlineColorAndroid="transparent"
  >

tungnguyenson avatar Sep 28 '18 12:09 tungnguyenson