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
if above once not worked for you then try add minLines also
TextField( keyboardType: TextInputType.multiline, minLines: 3, maxLines: null);