Multi-line Textfield in flutter

后端 未结 11 1711
夕颜
夕颜 2020-12-13 07:54

It may sound easy but How can we do a multi-line editable textfield in flutter? TextField works only with a single line.

Edit: some precisions beca

11条回答
  •  有刺的猬
    2020-12-13 08:32

    Use expands and you don't need to give minLines or maxLines any specific value:

    TextField(
      maxLines: null,
      expands: true, 
      keyboardType: TextInputType.multiline,
    )
    

提交回复
热议问题