calendar method

Widget calendar(
  1. BuildContext context,
  2. dynamic onSelected(
    1. DateTime initDate,
    2. DateTime? endDate
    ), {
  3. CalendarMode calendarMode = CalendarMode.single,
  4. bool showToday = true,
  5. bool disableWeekends = false,
  6. List<int> disabledDays = const [],
  7. List<DateTime> selectedDates = const [],
  8. DateTime? firstDate,
  9. DateTime? lastDate,
  10. Widget? footer,
  11. List<DateTime> disabledDates = const [],
})

Implementation

Widget calendar(BuildContext context,
    Function(DateTime initDate, DateTime? endDate) onSelected,
    {CalendarMode calendarMode = CalendarMode.single,
    bool showToday = true,
    bool disableWeekends = false,
    List<int> disabledDays = const [],
    List<DateTime> selectedDates = const [],
    DateTime? firstDate,
    DateTime? lastDate,
    Widget? footer,
    List<DateTime> disabledDates = const []}) {
  return Container(
    decoration: BoxDecoration(
        borderRadius: BorderRadius.circular(DUI.spacing.borderRadius)),
    child: Column(
      mainAxisAlignment: MainAxisAlignment.start,
      crossAxisAlignment: CrossAxisAlignment.start,
      mainAxisSize: MainAxisSize.min,
      children: [
        CalendarDatePicker2(
          onValueChanged: (date) {
            if (calendarMode == CalendarMode.single) {
              onSelected(date.first!, null);
            } else {
              onSelected(date.first!, date.length == 2 ? date.last! : null);
            }
          },
          config: CalendarDatePicker2Config(
            selectableDayPredicate: (date) {
              if (disableWeekends) {
                if (Utils.isWeekend(date)) {
                  return false;
                }
              }
              if (disabledDays.isNotEmpty) {
                if (Utils.isExcludedDays(disabledDays, date)) {
                  return false;
                }
              }

              return !Utils.containsDate(disabledDates, date);
            },
            centerAlignModePicker: true,
            disableModePicker: true,
            lastDate: lastDate,
            firstDate: firstDate,
            calendarViewMode: CalendarDatePicker2Mode.day,
            calendarType: calendarMode == CalendarMode.single
                ? CalendarDatePicker2Type.single
                : CalendarDatePicker2Type.range,
            customModePickerIcon: SizedBox.shrink(),
            dayBuilder: ({
              required date,
              textStyle,
              decoration,
              isSelected,
              isDisabled,
              isToday,
            }) {
              if ((isToday != null && isToday) &&
                  !(isSelected != null && isSelected)) {
                return Container(
                  decoration: BoxDecoration(
                      borderRadius:
                          BorderRadius.circular(DUI.spacing.borderRadius),
                      border: Border.all(
                          width: 1,
                          color: Theme.of(context)
                              .textTheme
                              .bodyMedium!
                              .color!
                              .withOpacity(showToday ? 0.1 : 0.0)),
                      color: Colors.transparent),
                  child: Center(
                    child: Text(
                      MaterialLocalizations.of(context)
                          .formatDecimal(date.day),
                      style: TextStyle(
                        fontFamily: Theme.of(context)
                            .textTheme
                            .bodyMedium!
                            .fontFamily,
                        fontWeight: DUI.text.semiBoldWeight,
                        fontSize: DUI.text.smallText,
                        color: Theme.of(context).textTheme.bodyMedium!.color,
                      ),
                    ),
                  ),
                );
              }

              return Container(
                decoration: decoration,
                child: Center(
                  child: Text(
                    MaterialLocalizations.of(context).formatDecimal(date.day),
                    style: textStyle,
                  ),
                ),
              );
            },
            controlsTextStyle: TextStyle(
              fontFamily: Theme.of(context).textTheme.bodyMedium!.fontFamily,
              fontWeight: DUI.text.semiBoldWeight,
              fontSize: DUI.text.h3,
              color: Theme.of(context).textTheme.bodyMedium!.color,
            ),
            lastMonthIcon: Icon(Icons.arrow_back_ios_new_rounded, size: 14),
            nextMonthIcon: Icon(Icons.arrow_forward_ios_rounded, size: 14),
            selectedDayHighlightColor:
                Theme.of(context).colorScheme.secondary,
            selectedRangeHighlightColor:
                Theme.of(context).colorScheme.secondary.withOpacity(0.05),
            selectedRangeDayTextStyle: TextStyle(
              fontFamily: Theme.of(context).textTheme.bodyMedium!.fontFamily,
              fontWeight: DUI.text.semiBoldWeight,
              fontSize: DUI.text.smallText,
              color: Theme.of(context).textTheme.bodyMedium!.color,
            ),
            firstDayOfWeek: 1,
            weekdayLabelTextStyle: TextStyle(
              fontFamily: Theme.of(context).textTheme.bodyMedium!.fontFamily,
              fontWeight: DUI.text.semiBoldWeight,
              fontSize: DUI.text.xsText,
              color: Theme.of(context).textTheme.bodyMedium!.color,
            ),
            disabledDayTextStyle: TextStyle(
              fontFamily: Theme.of(context).textTheme.bodyMedium!.fontFamily,
              fontWeight: DUI.text.semiBoldWeight,
              fontSize: DUI.text.smallText,
              color: Theme.of(context)
                  .textTheme
                  .bodyMedium!
                  .color!
                  .withOpacity(0.2),
            ),
            dayTextStyle: TextStyle(
              fontFamily: Theme.of(context).textTheme.bodyMedium!.fontFamily,
              fontWeight: DUI.text.semiBoldWeight,
              fontSize: DUI.text.smallText,
              color: Theme.of(context).textTheme.bodyMedium!.color,
            ),
            yearTextStyle: TextStyle(
              fontFamily: Theme.of(context).textTheme.bodyMedium!.fontFamily,
              fontWeight: DUI.text.semiBoldWeight,
              fontSize: DUI.text.regularText,
              color: Theme.of(context).textTheme.bodyMedium!.color,
            ),
            dayBorderRadius: BorderRadius.circular(DUI.spacing.borderRadius),
            selectedDayTextStyle: TextStyle(
                fontFamily:
                    Theme.of(context).textTheme.bodyMedium!.fontFamily,
                fontWeight: DUI.text.semiBoldWeight,
                fontSize: DUI.text.regularText,
                color: Theme.of(context)
                    .colorScheme
                    .secondary
                    .calculateLuminance()),
          ),
          value: selectedDates,
        ),
        Container(
          padding: EdgeInsets.all(DUI.spacing.lateralPaddingValue),
          child: footer ?? SizedBox.shrink(),
        )
      ],
    ),
  );
}