calendar_day 0.1.0 copy "calendar_day: ^0.1.0" to clipboard
calendar_day: ^0.1.0 copied to clipboard

This is a Widget that is use to customize a day date, by having a start and end date

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!

3
likes
150
points
32
downloads

Publisher

unverified uploader

Weekly Downloads

This is a Widget that is use to customize a day date, by having a start and end date

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, intl

More

Packages that depend on calendar_day