在Flutter中实现自定义固定底部导航的最佳方法是什么?目前,我有:
return Scaffold(
body: Stack(
children: <Widget>[
Positioned(
// Custom AppBar
),
Positioned(
// Content
),
Positioned(
// My custom fixed bottom navigation
)
然后,我使用MediaQuery.of(context).size.height并减去自定义AppBar和自定义底部导航的高度,以获取内容高度。它可以工作,但是这种方法存在很多问题。有更好的方法吗?