0 purchases
calendar day
calendar_day #
The CalendarDayWidget widget provides a simple calendar day widget that you can customize. Here are some usage examples:
Using the default widget:
CalendarDayWidget()
copied to clipboard
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) {},
)
copied to clipboard
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!
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.