kfiross / flutter_holo_date_picker

A Flutter package of datepicker like Holo Theme in Android
MIT License
61 stars 77 forks source link

picker not scroll in the web #62

Closed Mae623 closed 1 year ago

Mae623 commented 1 year ago

it can't scroll in the web totally the package version is 1.1.3 well, there is my code as below hope to you reply, thanks

Padding( padding: const EdgeInsets.only(left: 64.0, right: 64), child: DatePickerWidget( looping: true, firstDate: DateTime(1921), lastDate: DateTime.now(), initialDate: DateTime(1989, 6, 15), dateFormat: 'yyyy-MM-dd', locale: DateTimePickerLocale.zh_cn, onChange: handleChange, pickerTheme: DateTimePickerTheme( itemTextStyle: TextStyle( fontSize: 19), ), ), ),

Mae623 commented 1 year ago

I find the key! If I use the mouse wheel, it works. If I use the left mouse button, it doesn't work. Well, it is a bit strange.