Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter: How to disable the past dates in `showDatePicker`?

How to disable the past dates in flutter showDatePicker ? Below is my code

DateTime picked = await showDatePicker(
                              context: context,
                              initialDate: DateTime.now(),
                              firstDate: DateTime(2020, 1),
                              lastDate: DateTime(2101));
like image 621
PeakGen Avatar asked Jan 28 '20 05:01

PeakGen


1 Answers

Try out this

final DateTime picked = await showDatePicker(
  context: context,
  initialDate: DateTime.now(),
  firstDate: DateTime.now().subtract(Duration(days: 1)),
  lastDate: DateTime(2100),
);
like image 74
A R Avatar answered Oct 03 '22 23:10

A R