This package is based on this code showDatePicker. The showDatePicker return a DateTime, this package return a List<DateTime>
so you can select multiple date.
Show date picker which you can specify a list of date that allows users to choose.
List<DateTime> d = await showListDatePicker(
context: context,
initialDate: today,
initialDate: DateTime.now(),
firstDate: DateTime(DateTime.now().year - 1),
lastDate: DateTime(DateTime.now().year + 1),
);
- Etienne Théodore [email protected]