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
To use auto wrap, just set maxLines as null:
maxLines
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.