如何固定步进的无限高?

时间:2019-11-11 03:37:30

标签: flutter stepper

我对“步进水平”存在问题,因为即使我只有一个TextFormfield,它仍然可以滚动,因为它说高度是无穷大。

Container(
            child: new Stepper(
              steps: _mySteps(),
              controlsBuilder: _createEventControlBuilder,
              type: StepperType.horizontal,
              currentStep: this._currentStep,
              physics: BouncingScrollPhysics(),
               onStepTappe: (){
               }
               onStepContinue: (){
               }
               onStepCancel: (){
               }
                });
              },
            ),
          ),


  

════════(69)渲染库捕获到异常   ender RenderRepaintBoundary   在布局过程中,对象被赋予无限大小。用户创建的祖先   引起错误的小部件的位置是:Stepper   需求组成位更新

1 个答案:

答案 0 :(得分:0)

You can put height in your container like this 

Container(height: value)