Stepper 中的内联 TextFormField
Inline TextFormField in Stepper
我必须将两个 TextFormField 放在附近,但是当我创建 Row 并在儿童中放置两个 TextFormField 时,包含 Stepper 的容器消失了。我该怎么做?
让 Container 消失的代码
Widget build(BuildContext context) {
return Form(
key: global.formStateKeys[formIndex],
child: Column(
children: <Widget> [
Row(
children: <Widget> [
TextFormField(),
TextFormField()
],
)
]
)
)
}
可能是您的控制台出错了。你应该检查细节。要解决您的问题,请尝试使用 Expanded.
包装 TextFormField
Expanded(child: TextFormField()),
Expanded(child: TextFormField()),
我必须将两个 TextFormField 放在附近,但是当我创建 Row 并在儿童中放置两个 TextFormField 时,包含 Stepper 的容器消失了。我该怎么做?
让 Container 消失的代码
Widget build(BuildContext context) {
return Form(
key: global.formStateKeys[formIndex],
child: Column(
children: <Widget> [
Row(
children: <Widget> [
TextFormField(),
TextFormField()
],
)
]
)
)
}
可能是您的控制台出错了。你应该检查细节。要解决您的问题,请尝试使用 Expanded.
包装 TextFormFieldExpanded(child: TextFormField()),
Expanded(child: TextFormField()),