Skip to content

Commit

Permalink
fix: #425
Browse files Browse the repository at this point in the history
  • Loading branch information
asjqkkkk authored and lizichen committed Sep 15, 2022
1 parent 6bba637 commit bc37037
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -338,9 +338,8 @@ class _ScrollablePositionedListState extends State<ScrollablePositionedList>
return LayoutBuilder(
builder: (context, constraints) {
final cacheExtent = _cacheExtent(constraints);
return GestureDetector(
onPanDown: (_) => _stopScroll(canceled: true),
excludeFromSemantics: true,
return Listener(
onPointerDown: (_) => _stopScroll(canceled: true),
child: Stack(
children: <Widget>[
PostMountCallback(
Expand Down

0 comments on commit bc37037

Please sign in to comment.