Skip to content

Commit

Permalink
feat(color): Color properties for forground color of day #34
Browse files Browse the repository at this point in the history
  • Loading branch information
rwbr committed Mar 24, 2022
1 parent 297f93d commit d4d8bc5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [0.3.4+17] - 2022-03-23
* Issue #34 closed
* Properties for default day text colors

## [0.3.3+16] - 2022-03-23
* Issue #32 closed
* Option startOnMonday wasn't working correctly for the month view
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ For more details see the **example**.
/// top bar well get suppressed. Default is [false].
/// [hideBottomBar] at the moment has no function. Default is [false].
/// [events] are of type [Map<DateTime, List<NeatCleanCalendarEvent>>]. This data structure containes the events to display
/// [defaultDayColor] is the color applied to days in the current month, that are not selected.
/// [defaultOutOfMonthDayColor] is the color applied to days outside the current month.
/// [selctedColor] this is the color, applied to the circle on the selcted day
/// [todayColor] this is the color of the date of today
/// [todayButtonText] is a [String]. With this property you can set the caption of the today icon (button to navigate to today).
Expand Down Expand Up @@ -149,6 +151,8 @@ final bool hideTodayIcon;
'Use `eventsList` instead. Will be removed in NeatAndCleanCalendar 0.4.0')
final Map<DateTime, List<NeatCleanCalendarEvent>>? events;
final List<NeatCleanCalendarEvent>? eventsList;
final Color? defaultDayColor;
final Color? defaultOutOfMonthDayColor;
final Color? selectedColor;
final Color? todayColor;
final String todayButtonText;
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.3.3+16"
version: "0.3.4+17"
flutter_test:
dependency: "direct dev"
description: flutter
Expand Down
10 changes: 5 additions & 5 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: flutter_neat_and_clean_calendar
description: >-
Simple and clean flutter calendar with ability to
slide up/down to show weekly/monthly calendar.
Fork of https://pub.dev/packages/flutter_clean_calendar
version: 0.3.3+16
Simple and clean flutter calendar with ability to slide up/down to show
weekly/monthly calendar. Fork of
https://pub.dev/packages/flutter_clean_calendar
version: 0.3.4+17
homepage: https://github.com/rwbr/flutter_neat_and_clean_calendar

environment:
Expand All @@ -18,4 +18,4 @@ dev_dependencies:
flutter_test:
sdk: flutter

flutter:
flutter: null

0 comments on commit d4d8bc5

Please sign in to comment.