From 0a62946ac98c14c9c8ab85c0f01977910086f281 Mon Sep 17 00:00:00 2001 From: Jacques Doeleman Date: Thu, 13 Oct 2022 14:59:14 +0200 Subject: [PATCH] Added forgotten parameter --- CHANGELOG.md | 4 ++++ .../input_types/input_date_picker/input_date_picker.dart | 1 + 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 59484ae..1caa569 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,3 +17,7 @@ - Fix: Proper use of generics - Inputcontrollers now have an onChange. - Added switch input field + +## 1.0.1 - October 13th 2022 + +- Added forgotten onChanged parameter on date input field diff --git a/lib/src/widgets/input/input_types/input_date_picker/input_date_picker.dart b/lib/src/widgets/input/input_types/input_date_picker/input_date_picker.dart index 8ad96a9..304651a 100644 --- a/lib/src/widgets/input/input_types/input_date_picker/input_date_picker.dart +++ b/lib/src/widgets/input/input_types/input_date_picker/input_date_picker.dart @@ -69,6 +69,7 @@ class FlutterFormInputDateTimeController this.checkPageDescription, required this.dateTimeType, required this.dateFormat, + this.onChanged, }); final DateFormat dateFormat;