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
use this
TextFormField( keyboardType: TextInputType.multiline, maxLines: //Number_of_lines(int),)