diff --git a/CHANGELOG.md b/CHANGELOG.md index d479993b..eb7587be 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`. [#435](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/435) # [1.3.0 - 12 Nov 2024](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/tree/1.3.0) 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, );