We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bbb435 commit a3ee655Copy full SHA for a3ee655
lib/main.dart
@@ -47,7 +47,7 @@ class BlackoutDates extends State<SpecialDatesCellCustomization> {
47
48
Widget cellBuilder(BuildContext context, DateRangePickerCellDetails details) {
49
DateTime _visibleDates = details.date;
50
- if (isSpecialDay(_visibleDates)) {
+ if (isSpecialDate(_visibleDates)) {
51
return Column(
52
children: [
53
Container(
@@ -77,7 +77,7 @@ class BlackoutDates extends State<SpecialDatesCellCustomization> {
77
}
78
79
80
- bool isSpecialDay(DateTime date) {
+ bool isSpecialDate(DateTime date) {
81
for (int j = 0; j < _specialDates.length; j++) {
82
if (date.year == _specialDates[j].year &&
83
date.month == _specialDates[j].month &&
0 commit comments