📜  如何在颤动中降低文本表单字段的高度 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:28.156000             🧑  作者: Mango

代码示例1
Widget _buildTextField() {
  final maxLines = 5;

  return Container(
    margin: EdgeInsets.all(12),
    height: maxLines * 24.0,
    child: TextField(
      maxLines: maxLines,
      decoration: InputDecoration(
        hintText: "Enter a message",
        fillColor: Colors.grey[300],
        filled: true,
      ),
    ),
  );
}