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;