Skip to content

Commit

Permalink
Merge pull request #212 from its-me-abhishek/main
Browse files Browse the repository at this point in the history
Fix the picking of previous dates in add-task
  • Loading branch information
Pavel401 authored Nov 23, 2023
2 parents 452c8d9 + b5a598a commit 82bde6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/widgets/add_Task.dart
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class _AddTaskBottomSheetState extends State<AddTaskBottomSheet> {
fieldHintText: "Month/Date/Year",
context: context,
initialDate: due ?? DateTime.now(),
firstDate: DateTime(1990),
firstDate: DateTime.now(),
lastDate: DateTime(2037, 12, 31),
);
if (date != null) {
Expand Down

0 comments on commit 82bde6c

Please sign in to comment.