Hi, How to set <TextInput> style ?
borderColor seems no effect, and how to remove default bottom border?
related discussion here: https://github.com/facebook/react-native/issues/3182
The default bottom border cannot be removed, you can make it transparent though (by setting underlineTextColor).
Borders are currently not supported on TextInputs, bout you can wrap your TextInput in a View and add borders to that component.
@andreicoman11 - could you add that to the known issues docs?
got it
Set multiline={true} in the text input properties
Previous given link is now broken.
solution is to use underlineColorAndroid="transparent" on the TextInput
source: https://facebook.github.io/react-native/releases/0.26/docs/known-issues.html#text-input-border (archive)
Most helpful comment
Previous given link is now broken.
solution is to use
underlineColorAndroid="transparent"on theTextInputsource: https://facebook.github.io/react-native/releases/0.26/docs/known-issues.html#text-input-border (archive)