防止SliverAppBar灵活空间崩溃

时间:2020-06-20 12:15:55

标签: flutter flutter-layout flutter-sliver

我在嵌套的Scrollview中有一个SlivperAppBar,如下所示:

return new Scaffold(
        key: _scaffoldKey,
        body: new NestedScrollView(
          headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled) {
            return <Widget>[
              new FilterBar(_scaffoldKey.currentState)
            ];
          },
          controller: _scrollController,
          body:

我的FilterBar继承自SliverAppBar,在expendedHeight中具有flexibleSpace和内容。在我体内是另一个具有ListView的容器。向下滚动我想要的AppBar Disapperas时,但是,首先在栏的顶部移出屏幕之前,expandedHeight灵活空间会折叠。

当“滚动”应用栏时,是否有办法阻止柔性空间塌陷?

非常感谢您!

0 个答案:

没有答案