应用栏内的颤振步进器

时间:2021-06-12 19:00:53

标签: flutter stepper uistepper flutter-appbar

我可以在应用栏内使用水平步进小部件吗?如果没有,我如何“覆盖”应用栏并对其进行自定义以执行我想做的事情? (我只需要3个步骤) 谢谢!

2 个答案:

答案 0 :(得分:0)

简单明了不要使用appBar。 这是示例代码

return Scaffold(
  body: Column(
    children: [Stepper(), //add here the other widgets you want]);

答案 1 :(得分:0)

只需使用 AppBar 的 bottom 属性即可。步进器需要由 PreferredSize 小部件包装。

AppBar(
    bottom: PreferredSize(
      preferredSize: const Size.fromHeight(110.0),
      child: Stepper(),
    actions: [],
    )

它对我有用。