I have a TextField like this:
new Flexible(
fit: FlexFit.loose,
child: new Container(
alignment: FractionalOffset.topLeft,
child: new
Flutter was lagging multiline support in TextField. After an issue was raised regarding the same, the multiline feature has been added in the 0.0.16 release.
Make sure you upgrade flutter to the latest release. To get multiline TextField use:
new TextField(
maxLines: null,
keyboardType: TextInputType.multiline,
)
Hope this helped!