Skip to content

Commit

Permalink
fix: track pad horizontal scrolling not working
Browse files Browse the repository at this point in the history
  • Loading branch information
KRTirtho committed Jan 22, 2024
1 parent 8cd650b commit 59e0e6b
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,7 @@ class HorizontalPlaybuttonCardView<T> extends HookWidget {
onNotification: (notification) => true,
child: ScrollConfiguration(
behavior: ScrollConfiguration.of(context).copyWith(
dragDevices: {
PointerDeviceKind.touch,
PointerDeviceKind.mouse,
},
dragDevices: PointerDeviceKind.values.toSet(),
),
child: items.isEmpty
? ListView.builder(
Expand Down

0 comments on commit 59e0e6b

Please sign in to comment.