gpt4 book ai didi

flutter - 覆盖子 GestureDetectors 的 GestureDetector?

转载 作者:IT王子 更新时间:2023-10-29 07:08:43 27 4
gpt4 key购买 nike

有没有办法让 GestureDetector 覆盖所有子 GestureDetectors 的功能?

我有一个复杂的小部件,我希望能够轻松地在较高级别覆盖它的所有行为。例如,将免费用户锁定在功能之外。

最佳答案

要暂时禁用所有子手势检测器,请使用 IgnorePointer 小部件:

  @override
Widget build(BuildContext context) {

bool ignoreChildGestures = true;

return GestureDetector(
onTap: () {
print('parent tapped');
},
child: IgnorePointer(
ignoring: ignoreChildGestures,
child: GestureDetector(
onTapDown: (details) {
// won't be called when ignoring is set to true
print('child tap down!');
},
),
),
);
}

关于flutter - 覆盖子 GestureDetectors 的 GestureDetector?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51504395/

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