I got it to work by importing `package:flutter/gestures.dart` and adding: ```dart scrollBehavior: const MaterialScrollBehavior().copyWith( dragDevices: PointerDeviceKind.values.toSet(), ), ``` to the `MaterialApp`.
I got it to work by importing
package:flutter/gestures.dartand adding:to the
MaterialApp.