9

Demo

How can I achieve the multi-Line view on Text and Multi-Line TextField that can auto size the container at the bottom.

Edit:And align them properly

PrimeNexes
  • 565
  • 1
  • 7
  • 17

1 Answers1

11

You have this in the following question: Is there a way to dynamically change the Flutter TextField's maxLines?

Set this on your code:

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