easy_calendar_picker 0.0.2
easy_calendar_picker: ^0.0.2 copied to clipboard
A Calendar Picker package
Calendar Picker #
This package provides feature choice range date
Feature #

Usage #
To display:
showModalBottomSheet(
context: context,
isScrollControlled: true,
builder: (_) {
return CalendarPickerWidget(
minDate: DateTime(2024, 3, 8),
maxDate: DateTime(2025, 10, 1),
onConfirm: (fromDate, toDate) {},
actionWidget: const Row(
children: [],
),
);
});