Skip to content

Commit 6cba477

Browse files
authored
Merge pull request #440 from SimformSolutionsPvtLtd/fix/taps_in_month_view
fix: Fixes issue #435: 🐛 Fix tap issue for days not in month
2 parents af26492 + ff4eb4f commit 6cba477

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
- Fixes `startHour` and `endHour` not updating when rebuilding in week view. [#410](https://github.com/SimformSolutionsPvtLtd/flutter_calendar_view/issues/410)
910
- Fixes issue of header icon `color` property in `IconDataConfig`.
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)