Container( child: new ConstrainedBox( constraints: BoxConstraints( maxHeight: 300.0, ), child: TextField( maxLines: null, ), ), ), ),)
在较旧的Flutter版本中,
Container( child: new ConstrainedBox( constraints: BoxConstraints( maxHeight: 300.0, ), child: new Scrollbar( child: new SingleChildScrollView( scrollDirection: Axis.vertical, reverse: true, child: new TextField( maxLines: null, ), ), ), ),)



