mirror of
https://github.com/Iconica-Development/flutter_date_time_picker.git
synced 2025-05-18 18:33:49 +02:00
fix: icon color is seperated from the bar theme
This commit is contained in:
parent
b217e0cb85
commit
a674552396
3 changed files with 6 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
),
|
||||
],
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue