gpt4 book ai didi

flutter - 使用工作表中的 ScrollView 向下滚动 flutter 模态底部工作表

转载 作者:行者123 更新时间:2023-12-05 02:51:50 26 4
gpt4 key购买 nike

我使用 flutter 函数 showmodalbottomsheet 来显示带有 customscroll View 的页面。

但是当 scrollview 的滚动过度滚动时我遇到了一个问题我想滚动 bottomsheet 而不是过度滚动 customscrollview。

如何选择我想使用的卷轴?

比如我想做的像Facebook的评论页面:

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

最佳答案

您可能需要的是 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,
),
],
),
),
),
),

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

关于flutter - 使用工作表中的 ScrollView 向下滚动 flutter 模态底部工作表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62991796/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com