This is my code:
TextField( maxLines: 5, controller: controller, )
I want TextFiled nowrap with maxLines, when maxLines was set, the content will be wrap, no horizontal scroll bar, is there any way like in html textarea bellow?
textarea
<textarea wrap="off"></textarea>
2
Try this
SizedBox( width: 230.0, //your desire width child: TextField( controller: controller, keyboardType: TextInputType.multiline, expands: true, maxLines: null, ) )
Container( width: MediaQuery.of(context).size.width, child: TextField( controller: controller, keyboardType: TextInputType.multiline, expands: true, maxLines: null, ) )
Click here to cancel reply.
2
Answers
Try this