具有固定底部自定义导航的颤振

时间:2018-09-30 07:36:02

标签: flutter appbar

在Flutter中实现自定义固定底部导航的最佳方法是什么?目前,我有:

return Scaffold(
 body: Stack(
  children: <Widget>[
   Positioned(
     // Custom AppBar
   ),
   Positioned(
     // Content
   ),
   Positioned(
    // My custom fixed bottom navigation
   )

然后,我使用MediaQuery.of(context).size.height并减去自定义AppBar和自定义底部导航的高度,以获取内容高度。它可以工作,但是这种方法存在很多问题。有更好的方法吗?

0 个答案:

没有答案