Skip to content

Commit

Permalink
Merge pull request #438 from SimformSolutionsPvtLtd/feature/update_re…
Browse files Browse the repository at this point in the history
…adme

docs: Fixes issue #433: 📝 Update documentation `hideDaysNotInMonth` argument in cellBuilder
  • Loading branch information
PRBaraiya authored Dec 30, 2024
2 parents 077d35f + bbce335 commit c6cfe4a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Default is `showWeekends = true` shows all weekdays. [#385](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/385)
- Events are now hidden for days not in the current month when hideDaysNotInMonth = true
- Fixes right icon always shows default icon in `CalendarPageHeader` when providing custom icon. [#432](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/432)
- Adds `hideDaysNotInMonth` argument in `cellBuilder` in readme. [#433](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/433)

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

Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,13 @@ For month view
MonthView(
controller: EventController(),
// to provide custom UI for month cells.
cellBuilder: (date, events, isToday, isInMonth) {
cellBuilder: (
date,
events,
isToday,
isInMonth,
hideDaysNotInMonth,
) {
// Return your widget to display as month cell.
return Container();
},
Expand Down

0 comments on commit c6cfe4a

Please sign in to comment.