I used a CupertinoDatePicker
in a Flutter project that also should be deployed as a web app. But the CupertinoDatePicker
only reacts to the mouse wheel, not to drag events. I think that this is unexpected behavior for many users.
Is there a way to tell the CupertinoDatePicker
that it should also be draggable in addition to listening for mouse scroll events?
Code to reproduce:
CupertinoDatePicker(
onDateTimeChanged: (v) => print(v),
),