有没有办法将 appbar 放在 flutter 的底部?

Is there a way to place the appbar at the bottom in flutter?

有没有办法在 flutter 中将应用栏停靠在底部?

谢谢。

AppBar 与其他任何小部件一样只是一个小部件。你可以把它放在任何你想放的地方。

即使在 ScaffoldbottomNavigationBar 字段中。

final appBar = new AppBar(title: new Text("data"));
return new Scaffold(
  body: new Center(
    child: new FlatButton(
      child: new Text("data"),
    ),
  ),
  bottomNavigationBar: new SizedBox(
    height: appBar.preferredSize.height,
    child: appBar,
  ),
);

尽管在这种情况下您也可以使用 BottomAppBar