【问题标题】:Get multi-line Text in Flutter在 Flutter 中获取多行文本 【发布时间】:2018-03-18 14:29:56 【问题描述】: 如何实现 Text 和 Multi-Line TextField 上的多行视图,可以自动调整底部容器的大小。 编辑:并正确对齐它们 【问题讨论】: 标签: dart flutter 【解决方案1】: 您在以下问题中有此问题: Is there a way to dynamically change the Flutter TextField's maxLines? 在你的代码上设置这个: new TextField( maxLines: null, keyboardType: TextInputType.multiline, ); 【讨论】: