Skip to content

Commit

Permalink
fix: Fixes issue #435: ✨Fix tap issue for days not in month
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham-jitiya-simform committed Jan 2, 2025
1 parent 836953e commit 35e015a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 2 additions & 0 deletions lib/src/month_view/month_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,8 @@ class MonthViewState<T extends Object?> extends State<MonthView<T>> {
events: events,
isInMonth: isInMonth,
onTileTap: widget.onEventTap,
onTileDoubleTap: widget.onEventDoubleTap,
onTileLongTap: widget.onEventLongTap,
dateStringBuilder: widget.dateStringBuilder,
hideDaysNotInMonth: hideDaysNotInMonth,
);
Expand Down

0 comments on commit 35e015a

Please sign in to comment.