Skip to content

Commit

Permalink
fix: Accounts and tags pages do not scroll when overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
enrique-lozano committed Jul 25, 2024
1 parent b36fd40 commit 91bc8f6
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 91bc8f6

Please sign in to comment.