Pranay Desai
Pranay Desai

Reputation: 595

Get multi-line Text in Flutter

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

Upvotes: 9

Views: 7126

Answers (1)

Alberto Sáez Vela
Alberto Sáez Vela

Reputation: 322

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,
);

Upvotes: 11

Related Questions