iamvivekkaushik / DatePickerTimelineFlutter

Flutter Date Picker Library that provides a calendar as a horizontal timeline
Apache License 2.0
286 stars 203 forks source link

initiate date picker from predefined list #34

Open 3ace opened 4 years ago

3ace commented 4 years ago

this PR will add new constructor to display a predefined list of date.

example:

DatePicker.fromList(
  [
    DateTime(2020, 1, 1),
    DateTime(2020, 2, 1),
    DateTime(2020, 3, 1),
    DateTime(2020, 4, 1),
    DateTime(2020, 5, 1),
    DateTime(2020, 6, 1),
    DateTime(2020, 7, 1),
    DateTime(2020, 8, 1),
    DateTime(2020, 9, 1),
    DateTime(2020, 10, 1),
    DateTime(2020, 11, 1),
    DateTime(2020, 12, 1),
  ],
  width: 60,
  height: 80,
  initialSelectedDate: DateTime(2020, 4, 1),
  selectionColor: Colors.black,
  selectedTextColor: Colors.white,
)