calendar_day

The CalendarDayWidget widget provides a simple calendar day widget that you can customize. Here are some usage examples:

  1. Using the default widget:

CalendarDayWidget()

or a little bit of custom with:

   CalendarDayWidget(
            startDate: DateTime(2024, 5, 1),
            endDate: DateTime(2024, 5, 7),
            leftIcon: Icon(
              Icons.arrow_left,
              size: 30,
            ),
            rightIcon: Icon(
              Icons.arrow_right,
              size: 30,
            ),
            textStyle: TextStyle(),
            dateFormat: DateFormat("EEEE, MMMM dd"),
            onDateSelected: (value) {},
          )

Example

Find the example wiring in the CalendarDay example application.

Issues and feedback

Please file issues to send feedback or report a bug. Thank you!

Libraries

calendar_day