We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bba637 commit bc37037Copy full SHA for bc37037
packages/scrollable_positioned_list/lib/src/scrollable_positioned_list.dart
@@ -338,9 +338,8 @@ class _ScrollablePositionedListState extends State<ScrollablePositionedList>
338
return LayoutBuilder(
339
builder: (context, constraints) {
340
final cacheExtent = _cacheExtent(constraints);
341
- return GestureDetector(
342
- onPanDown: (_) => _stopScroll(canceled: true),
343
- excludeFromSemantics: true,
+ return Listener(
+ onPointerDown: (_) => _stopScroll(canceled: true),
344
child: Stack(
345
children: <Widget>[
346
PostMountCallback(
0 commit comments