我对“步进水平”存在问题,因为即使我只有一个TextFormfield,它仍然可以滚动,因为它说高度是无穷大。
Container(
child: new Stepper(
steps: _mySteps(),
controlsBuilder: _createEventControlBuilder,
type: StepperType.horizontal,
currentStep: this._currentStep,
physics: BouncingScrollPhysics(),
onStepTappe: (){
}
onStepContinue: (){
}
onStepCancel: (){
}
});
},
),
),
════════(69)渲染库捕获到异常 ender RenderRepaintBoundary 在布局过程中,对象被赋予无限大小。用户创建的祖先 引起错误的小部件的位置是:Stepper 需求组成位更新
答案 0 :(得分:0)
You can put height in your container like this
Container(height: value)