diff --git a/CHANGELOG.md b/CHANGELOG.md index 643e908e..8874bd03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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`. diff --git a/lib/src/month_view/month_view.dart b/lib/src/month_view/month_view.dart index 1aa4232f..963b3d66 100644 --- a/lib/src/month_view/month_view.dart +++ b/lib/src/month_view/month_view.dart @@ -570,6 +570,8 @@ class MonthViewState extends State> { events: events, isInMonth: isInMonth, onTileTap: widget.onEventTap, + onTileDoubleTap: widget.onEventDoubleTap, + onTileLongTap: widget.onEventLongTap, dateStringBuilder: widget.dateStringBuilder, hideDaysNotInMonth: hideDaysNotInMonth, );