So aktivieren Sie multiline Textformfelder flattern
TextField(
keyboardType: TextInputType.multiline,
maxLines: null,
)
Sore Shrew
TextField(
keyboardType: TextInputType.multiline,
maxLines: null,
)
new TextField(
keyboardType: TextInputType.multiline,
maxLines: whatever,
)
Text(
"TOP ADDED",
textAlign: TextAlign.justify,
overflow: TextOverflow.ellipsis,
style: TextStyle(fontSize: 18.0),
maxLines: 2,)
TextField(
keyboardType: TextInputType.multiline,
maxLines: null,
minLines: 3, // this will give you default height, you should adjust it.
//Optional way to do full screen
//(MediaQuery.of(context).size.height / 25).toInt()
...
)
// All that is required for multi-line text, is that your Text() widgets'
// width is limited by a parent widget. For example:
SizedBox(
width: 150,
child: Text(
"This text is very very very very very very very very very very very very very very very very very very very very very very very very very long",
),
),