Home > Back-end >  flutter TextField maxLines and no wrap?
flutter TextField maxLines and no wrap?

Time:12-01

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:

enter image description here

  • current:

enter image description here

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,
)
)
  • Related