如果在水平模式下使用步进器,我会得到以下结果。
但是,我希望步骤的标题出现在柜台下方。如何在 Flutter 中实现这一点?
在_StepperState
类中有_buildHorizontal
代码的方法:
Row(
children: <Widget>[
Container(
height: 72.0,
child: Center(
child: _buildIcon(i),
),
),
Container(
margin: const EdgeInsetsDirectional.only(start: 12.0),
child: _buildHeaderText(i),
),
],
),
where_buildHeaderText
返回标题或带副标题的标题。所以,你不能用标准做你想做的事Stepper
——你必须自定义这个类