From c600044546c9cc46768aaf15d0c8373e4fa0b9f1 Mon Sep 17 00:00:00 2001 From: Shubham Jitiya Date: Thu, 2 Jan 2025 11:53:19 +0530 Subject: [PATCH] =?UTF-8?q?fix:=20Fixes=20issue=20#435:=20=F0=9F=90=9B=20F?= =?UTF-8?q?ix=20tap=20issue=20for=20days=20not=20in=20month?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + lib/src/month_view/month_view.dart | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d479993b..6e2afba1 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) # [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, );