gpt4 book ai didi

flutter - 如何注意用户何时松开手指

转载 作者:行者123 更新时间:2023-12-03 04:56:19 26 4
gpt4 key购买 nike

我有一个listView.Builder,想在用户在屏幕上松开手指时根据scrollController的位置进行某些计算吗?

计算部分很容易抖动,但是如何注意到用户从滚动中释放手指来执行某些操作?

最佳答案

使用NotificationListener窗口小部件。 Here是它的简短片段。

您可能想要的代码如下所示:

@override
Widget build(BuildContext context) {
return NotificationListener<ScrollNotification>(
onNotification: (notification) {
if (notification is ScrollStartNotification) {
debugPrint('Started');
}
if (notification is ScrollUpdateNotification) {
debugPrint('Updated');
}
if (notification is ScrollEndNotification) {
debugPrint('Ended');
}
return false;
},
child: YourListView(),
);
}

关于flutter - 如何注意用户何时松开手指,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60579183/

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