在Flutter'Stepper中,如何将Step的标题放在柜台下方?
In Flutter' Stepper, how to put the title of the Step below the counter?
如果在水平模式下使用步进器,我会得到以下结果。
但是,我希望步骤的标题显示在柜台下方。我怎样才能在 Flutter 中实现这一点?
在 _StepperState
class 中有方法 _buildHorizontal
代码:
Row(
children: <Widget>[
Container(
height: 72.0,
child: Center(
child: _buildIcon(i),
),
),
Container(
margin: const EdgeInsetsDirectional.only(start: 12.0),
child: _buildHeaderText(i),
),
],
),
其中 _buildHeaderText
returns 标题或带副标题的标题。
所以,你不能用标准 Stepper
做你想做的事 - 你必须自定义这个 class
如果在水平模式下使用步进器,我会得到以下结果。
但是,我希望步骤的标题显示在柜台下方。我怎样才能在 Flutter 中实现这一点?
在 _StepperState
class 中有方法 _buildHorizontal
代码:
Row(
children: <Widget>[
Container(
height: 72.0,
child: Center(
child: _buildIcon(i),
),
),
Container(
margin: const EdgeInsetsDirectional.only(start: 12.0),
child: _buildHeaderText(i),
),
],
),
其中 _buildHeaderText
returns 标题或带副标题的标题。
所以,你不能用标准 Stepper
做你想做的事 - 你必须自定义这个 class