I have a Name text box. When I write a name, it goes right on one line. I want her to move to the next line after she reaches the width of the text box. When I use multiline = 'true', I got an error:
Error updating property of a "multi-line" view managed by: Android TextInput.
Here is my code:
<TextField
label = {'Name :'}
highlightColor = {'#00BCD4'}
style = {{height: 40}}
multiline = 'true' />
source
share