In category_overflow_calendar_day_view.dart _DayViewBody class the event box constraint maxHeight is the event duration in minutes. But if I increase the heightPerMin for the calendar, then the event height is smaller than the actual duration height. Workaround was to pass a constraint with the maxHeight being the durationInMins * heightPerMin (from the calendar constructor).
In
category_overflow_calendar_day_view.dart _DayViewBody class
the event box constraint maxHeight is the event duration in minutes. But if I increase the heightPerMin for the calendar, then the event height is smaller than the actual duration height. Workaround was to pass a constraint with the maxHeight being the durationInMins * heightPerMin (from the calendar constructor).Workaround