Skip to content

Commit c6cfe4a

Browse files
authored
Merge pull request #438 from SimformSolutionsPvtLtd/feature/update_readme
docs: Fixes issue #433: 📝 Update documentation `hideDaysNotInMonth` argument in cellBuilder
2 parents 077d35f + bbce335 commit c6cfe4a

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
Default is `showWeekends = true` shows all weekdays. [#385](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/385)
44
- Events are now hidden for days not in the current month when hideDaysNotInMonth = true
55
- Fixes right icon always shows default icon in `CalendarPageHeader` when providing custom icon. [#432](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/432)
6+
- Adds `hideDaysNotInMonth` argument in `cellBuilder` in readme. [#433](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/433)
67

78
# [1.3.0 - 12 Nov 2024](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/tree/1.3.0)
89

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,13 @@ For month view
132132
MonthView(
133133
controller: EventController(),
134134
// to provide custom UI for month cells.
135-
cellBuilder: (date, events, isToday, isInMonth) {
135+
cellBuilder: (
136+
date,
137+
events,
138+
isToday,
139+
isInMonth,
140+
hideDaysNotInMonth,
141+
) {
136142
// Return your widget to display as month cell.
137143
return Container();
138144
},

0 commit comments

Comments
 (0)