Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 724 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 724 Bytes

List Date Picker

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.

Getting Started

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),
);

Authors

Pub Link

list_date_picker