Skip to content

Commit c600044

Browse files
author
Shubham Jitiya
committed
fix: Fixes issue #435: 🐛 Fix tap issue for days not in month
1 parent 836953e commit c600044

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- Fixes right icon always shows default icon in `CalendarPageHeader` when providing custom icon. [#432](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/432)
66
- Adds `hideDaysNotInMonth` argument in `cellBuilder` in readme. [#433](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/433)
77
- Fixes `titleColor` of date for `hideDaysNotInMonth: false`.
8+
- Fixes tap `onTileDoubleTap` & `onTileLongTap` issue for `hideDaysNotInMonth` in month view. [#435](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/435)
89

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

lib/src/month_view/month_view.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,8 @@ class MonthViewState<T extends Object?> extends State<MonthView<T>> {
570570
events: events,
571571
isInMonth: isInMonth,
572572
onTileTap: widget.onEventTap,
573+
onTileDoubleTap: widget.onEventDoubleTap,
574+
onTileLongTap: widget.onEventLongTap,
573575
dateStringBuilder: widget.dateStringBuilder,
574576
hideDaysNotInMonth: hideDaysNotInMonth,
575577
);

0 commit comments

Comments
 (0)