应用栏内的颤动步进器
Flutter stepper inside appbar
我可以在应用栏内使用水平步进小部件吗?如果没有,我如何“覆盖”应用栏并对其进行自定义以执行我想执行的操作?
(我只需要3个步骤)
谢谢!
简单明了,不要使用 appBar。
这是示例代码
return Scaffold(
body: Column(
children: [Stepper(), //add here the other widgets you want]);
只需使用AppBar 的属性bottom。步进器需要由 PreferredSize Widget 包装。
AppBar(
bottom: PreferredSize(
preferredSize: const Size.fromHeight(110.0),
child: Stepper(),
),
actions: [],
)
对我有用。
我可以在应用栏内使用水平步进小部件吗?如果没有,我如何“覆盖”应用栏并对其进行自定义以执行我想执行的操作? (我只需要3个步骤) 谢谢!
简单明了,不要使用 appBar。 这是示例代码
return Scaffold(
body: Column(
children: [Stepper(), //add here the other widgets you want]);
只需使用AppBar 的属性bottom。步进器需要由 PreferredSize Widget 包装。
AppBar(
bottom: PreferredSize(
preferredSize: const Size.fromHeight(110.0),
child: Stepper(),
),
actions: [],
)
对我有用。