Skip to content

Commit

Permalink
Merge pull request #440 from SimformSolutionsPvtLtd/fix/taps_in_month…
Browse files Browse the repository at this point in the history
…_view

fix: Fixes issue #435: 🐛 Fix tap issue for days not in month
  • Loading branch information
PRBaraiya authored Jan 2, 2025
2 parents af26492 + ff4eb4f commit 6cba477
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- 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)
- Fixes `titleColor` of date for `hideDaysNotInMonth: false`.
- Fixes tap `onTileDoubleTap` & `onTileLongTap` issue for `hideDaysNotInMonth` in month view. [#435](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/435)
- Fixes `startHour` and `endHour` not updating when rebuilding in week view. [#410](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/410)
- Fixes issue of header icon `color` property in `IconDataConfig`.

Expand Down
2 changes: 2 additions & 0 deletions lib/src/month_view/month_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,8 @@ class MonthViewState<T extends Object?> extends State<MonthView<T>> {
events: events,
isInMonth: isInMonth,
onTileTap: widget.onEventTap,
onTileDoubleTap: widget.onEventDoubleTap,
onTileLongTap: widget.onEventLongTap,
dateStringBuilder: widget.dateStringBuilder,
hideDaysNotInMonth: hideDaysNotInMonth,
);
Expand Down

0 comments on commit 6cba477

Please sign in to comment.