Multi-line Textfield in flutter

后端 未结 11 1745
夕颜
夕颜 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:26

    To use auto wrap, just set maxLines as null:

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

    If the maxLines property is null, there is no limit to the number of lines, and the wrap is enabled.

提交回复
热议问题