diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d5fd6c..55c07fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 3.3.1 + +- Fixed seperated bar theme from icon color + ## 3.3.0 - Fixed localization bug for the overlay variant of the datetimepicker @@ -19,7 +23,7 @@ - Renamed ambiguously named textStyle-property of DatePicker that only affected weekday-styling as weekdayTextStyle - Added custimzation option to change border of days - Added customization option to change padding of calendar - + ## 2.3.1 - Added extra customization options for datetimepicker (Customizable buttons, text formatting for weekday and month) @@ -32,7 +36,6 @@ - Fixed drag down date time picker not rebuilding - ## 2.2.3 - Fixed skipping month bug diff --git a/lib/src/widgets/overlay_date_time_picker/overlay.dart b/lib/src/widgets/overlay_date_time_picker/overlay.dart index dda1a62..5219824 100644 --- a/lib/src/widgets/overlay_date_time_picker/overlay.dart +++ b/lib/src/widgets/overlay_date_time_picker/overlay.dart @@ -103,7 +103,6 @@ class _OverlayDateTimeContentState extends State { ? _goToPreviousPage : null, icon: prevIcon, - color: widget.theme.barTheme.barColor, iconSize: widget.theme.paginationSize, ), Text( @@ -122,7 +121,6 @@ class _OverlayDateTimeContentState extends State { ? _goToNextPage : null, icon: nextIcon, - color: widget.theme.barTheme.barColor, iconSize: widget.theme.paginationSize, ), ], diff --git a/pubspec.yaml b/pubspec.yaml index 6f3a29c..681e09e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_date_time_picker description: A Flutter package for date and time picker. -version: 3.3.0 +version: 3.3.1 environment: sdk: ">=3.0.0 <4.0.0"