skip to Main Content

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

2

Answers


  1. Try this

    SizedBox(
    
    width: 230.0, //your desire width
    child: TextField(
      controller: controller,
      keyboardType: TextInputType.multiline,
      expands: true,
      maxLines: null,
    )
    )
    
    Login or Signup to reply.
  2. Container(
    width: MediaQuery.of(context).size.width,
    child: TextField(
      controller: controller,
      keyboardType: TextInputType.multiline,
      expands: true,
      maxLines: null,
     )
    )
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search