flutter text field in multiple lines code example
Example 1: flutter multiline text field
new TextField(
keyboardType: TextInputType.multiline,
maxLines: whatever,
)
Example 2: how to flutter multiple line text
Text(
"TOP ADDED",
textAlign: TextAlign.justify,
overflow: TextOverflow.ellipsis,
style: TextStyle(fontSize: 18.0),
maxLines: 2,)