fix desktop scroll with touchpad

This commit is contained in:
DeeJayBro 2022-12-23 11:16:15 +01:00
parent 5efff9a1e9
commit 99ce8eb54f

View File

@ -6,5 +6,6 @@ class CustomScrollBehavior extends MaterialScrollBehavior {
Set<PointerDeviceKind> get dragDevices => { Set<PointerDeviceKind> get dragDevices => {
PointerDeviceKind.touch, PointerDeviceKind.touch,
PointerDeviceKind.mouse, PointerDeviceKind.mouse,
PointerDeviceKind.trackpad
}; };
} }