在颤振中有没有办法将Appbar停靠在底部?
谢谢。

最佳答案

AppBar只是一个小部件,与其他小部件一样。你可以把它放在任何你想要的地方。
即使在bottomNavigationBarScaffold字段中。

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

关于flutter - 有没有办法将appbar放在底部 flutter 腾?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50165558/

10-12 06:27