fix: icon color is seperated from the bar theme

This commit is contained in:
mike doornenbal 2023-10-06 10:01:28 +02:00
parent b217e0cb85
commit a674552396
3 changed files with 6 additions and 5 deletions

View file

@ -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
@ -32,7 +36,6 @@
- Fixed drag down date time picker not rebuilding
## 2.2.3
- Fixed skipping month bug

View file

@ -103,7 +103,6 @@ class _OverlayDateTimeContentState extends State<OverlayDateTimeContent> {
? _goToPreviousPage
: null,
icon: prevIcon,
color: widget.theme.barTheme.barColor,
iconSize: widget.theme.paginationSize,
),
Text(
@ -122,7 +121,6 @@ class _OverlayDateTimeContentState extends State<OverlayDateTimeContent> {
? _goToNextPage
: null,
icon: nextIcon,
color: widget.theme.barTheme.barColor,
iconSize: widget.theme.paginationSize,
),
],

View file

@ -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"