我使用flutter函数showmodalbottomsheet来显示带有海关滚动视图的页面。
但是当scrollview的滚动过度滚动时,我有一个问题,我想滚动底部页面而不是过度滚动customscrollview。
如何选择要使用的滚动条?
例如,我想做Facebook评论页面:
答案 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,
),
],
),
),
),
),
(当我偶然发现您的问题时,我也在寻找答案,决定分享我的研究结果:)希望对您有帮助!)