向下滚动颤动模式底部工作表,并在工作表中使用滚动视图

时间:2020-07-20 08:49:37

标签: flutter flutter-showmodalbottomsheet

我使用flutter函数showmodalbottomsheet来显示带有海关滚动视图的页面。

但是当scrollview的滚动过度滚动时,我有一个问题,我想滚动底部页面而不是过度滚动customscrollview。

如何选择要使用的滚动条?

例如,我想做Facebook评论页面:

here you can see the sheet is scrolling down when the scrollview is at max scroll

1 个答案:

答案 0 :(得分:0)

您可能需要的是DraggableScrollableSheet

showModalBottomSheet(
  isScrollControlled: true,
  context: context,
  builder: (context) => DraggableScrollableSheet(
    builder: (context, scrollController) => SingleChildScrollView(
      controller: scrollController,
      child: Column(
        children: [
          Container(
            color: Colors.purple,
            height: 100,
          ),
          Container(
            color: Colors.orange,
            height: 300,
          ),
          Container(
            color: Colors.black,
            height: 300,
          ),
        ],
      ),
    ),
  ),
),

(当我偶然发现您的问题时,我也在寻找答案,决定分享我的研究结果:)希望对您有帮助!)