Merge pull request #36 from Iconica-Development/bugfix/icon_color

fix: icon color is seperated from the bar theme
This commit is contained in:
Gorter-dev 2023-10-06 11:33:59 +02:00 committed by GitHub
commit 7497cae081
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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
@ -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

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"