【发布时间】:2023-02-03 16:15:23
【问题描述】:
我正在编写一个用于获取输入电子邮件地址的小部件。 但是我得到的错误底部被无限像素溢出了。
这是代码。
return Scaffold(
body: Column(
mainAxisSize: MainAxisSize.min,
children: [
Container(
height: space_8,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(space_2),
color: widgetBackGroundColor
),
child: SizedBox(
height: space_8,
child: TextFormField(
controller: controller,
keyboardType: TextInputType.emailAddress,
decoration: InputDecoration(
hintText: "example@gmail.com",
),
),
)
)
],
),
);
【问题讨论】:
-
将 TextFormFiled 包装成 Expanded
标签: flutter