初始高度为屏幕一半的底页,如果滚动,则高度增加到全屏

时间:2018-08-26 16:20:01

标签: flutter flutter-layout

我在下面的代码中有一个底页,其中我将高度设置为300.0,但是我想在用户滚动时将高度增加到全屏..我该怎么做..请

void _showBottomSheet() {
    setState(() {
      _showPersBottomSheetCallBack = null;
    });

    _scaffoldKey.currentState
        .showBottomSheet((context) {
      return new Container(
        height: 300.0,
        color: Colors.greenAccent,
        child: new Center(
          child: new Text("Hi BottomSheet"),
        ),
      );
    })
        .closed
        .whenComplete(() {
      if (mounted) {
        setState(() {
          _showPersBottomSheetCallBack = _showBottomSheet;
        });
      }
    });
  }

2 个答案:

答案 0 :(得分:7)

绒毛包装的底部薄片并非占据了整个屏幕,尽管稍作调整就能产生您期望的行为。 如果您查看BottomSheet constructor,将会发现以下内容:

  @override
  BoxConstraints getConstraintsForChild(BoxConstraints constraints) {
    return new BoxConstraints(
      minWidth: constraints.maxWidth,
      maxWidth: constraints.maxWidth,
      minHeight: 0.0,
      maxHeight: constraints.maxHeight * 9.0 / 16.0
    );
  }

如果删除9.0 / 16.0高度限制,则底部工作表将占据整个屏幕高度。

答案 1 :(得分:4)

如果您想要的只是一个全屏底部(如@edmond所示),您现在可以使用isScrollControlled: true,而不必维护自己的BottomSheet hacked版本。

无论如何,问题在于首先将图纸加载到一半高度,并能够在滚动时扩展到整个高度。对于这种细粒度的控件,您仍然需要使用isScrollControlled: true,但也可以将模式表的内容包装在DraggableScrollableSheet中。 This Github comment向您展示了如何进行操作,我在此复制以供参考:

showModalBottomSheet(
  context: context,
  isScrollControlled: true,
  builder: (BuildContext context) {
    return DraggableScrollableSheet(
      initialChildSize: 0.5, // half screen on load
      maxChildSize: 1,       // full screen on scroll
      minChildSize: 0.25,
      builder: (BuildContext context, ScrollController scrollController) {
        return Container(
          color: Colors.white,
          child: ListView.builder(
            controller: scrollController,
            itemCount: 25,
            itemBuilder: (BuildContext context, int index) {
              return ListTile(title: Text('Item $index'));
            },
          ),
        );
      },
    );
  },
);