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 wrap="off"></textarea>
- expect:
- current:
CodePudding user response:
Container(
width: MediaQuery.of(context).size.width,
child: TextField(
controller: controller,
keyboardType: TextInputType.multiline,
expands: true,
maxLines: null,
)
)
CodePudding user response:
Try this
SizedBox(
width: 230.0, //your desire width
child: TextField(
controller: controller,
keyboardType: TextInputType.multiline,
expands: true,
maxLines: null,
)
)