chilimyan

Results 2 comments of chilimyan

if (dayRangeChanged) { // CupertinoPicker refresh data not working (https://github.com/flutter/flutter/issues/22999) int currDay = _currDay; _dayScrollCtrl.jumpToItem(dayRange.last - dayRange.first); if (currDay < dayRange.last) { _dayScrollCtrl.jumpToItem(currDay - dayRange.first); } //对_currDay重新赋值可解决DatePickerWidget,其他的应该类似 _currDay = currDay;...