Skip to content

Commit

Permalink
Merge pull request #494 from BrayFlex/master
Browse files Browse the repository at this point in the history
Fix for scrollbar clickthrough
  • Loading branch information
sjmcdowall authored Jun 4, 2023
2 parents c4debd3 + e623b23 commit 15e9695
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/src/material/suggestions_box/suggestions_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,8 @@ class _SuggestionsListState<T> extends State<SuggestionsList<T>>
);
}

child = TextFieldTapRegion(child: child);

return child;
}

Expand Down Expand Up @@ -465,6 +467,8 @@ class _SuggestionsListState<T> extends State<SuggestionsList<T>>
);
}

child = TextFieldTapRegion(child: child);

return child;
}
}

0 comments on commit 15e9695

Please sign in to comment.