flutter 如何设置 AppBar title 和 bottom 的距离?

在保证title 位置不变的情况下, 与tab之间的距离小一点。
image.png

采用 PreferredSize 的话虽然距离会缩小但是 title 的位置也会跟着往上边移动。

new AppBar(
             title: new Text('Tabs Demo'),
             bottom: new PreferredSize(
               preferredSize: new Size(200.0, 30.0),
               child: new Container(
                child: TabBar(...)
               )
阅读 3.3k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题