Skip to content

Commit

Permalink
Merge pull request #179 from enrique-lozano/hot-fixes
Browse files Browse the repository at this point in the history
Accounts and tags pages do not scroll when overflow
  • Loading branch information
enrique-lozano authored Jul 25, 2024
2 parents b36fd40 + 91bc8f6 commit 76d28d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class _MonekinReorderableListState extends State<MonekinReorderableList> {
Widget build(BuildContext context) {
return ReorderableListView.builder(
shrinkWrap: true,
physics: const NeverScrollableScrollPhysics(),
physics: const BouncingScrollPhysics(),
itemBuilder: (context, index) => Opacity(
key: Key(index.toString()),
opacity: isOrderingItem == null || isOrderingItem == index ? 1 : 0.4,
Expand Down

0 comments on commit 76d28d3

Please sign in to comment.