4

如果在水平模式下使用步进器,我会得到以下结果。

水平模式下的步进器

但是,我希望步骤的标题出现在柜台下方。如何在 Flutter 中实现这一点?

4

1 回答 1

3

_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——你必须自定义这个类

于 2018-12-18T15:04:26.907 回答