I am not able to get TextField to textwrap. I want it to go to multiple lines, but right now it just goes on and on on a single line. Is there a way to do textwrap on a TextField?
I am using NS angular.
For example:
<TextField hint="write stuff" textWrap="true"></TextField>
Does not work.
It DOES work if I use TextView instead. However, that brings up other problems–I want to have a close keyboard button on the keyboard, which requires I expose a returnPress event. I am not able to do this with TextView. So I want to use TextField, but also want to wrap the text. I have not been able to do it with CSS either yet.