Skip to content

Commit 372a2bf

Browse files
author
Shubham Jitiya
committed
Fix annotation issue of pipeline
1 parent ec4c3e1 commit 372a2bf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lib/src/day_view/day_view.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ class DayViewState<T extends Object?> extends State<DayView<T>> {
662662
/// Default timeline builder this builder will be used if
663663
/// [widget.eventTileBuilder] is null
664664
///
665-
Widget _defaultTimeLineBuilder(date) => DefaultTimeLineMark(
665+
Widget _defaultTimeLineBuilder(DateTime date) => DefaultTimeLineMark(
666666
date: date,
667667
timeStringBuilder: widget.timeStringBuilder,
668668
markingStyle: TextStyle(

lib/src/month_view/month_view.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -598,11 +598,11 @@ class MonthViewState<T extends Object?> extends State<MonthView<T>> {
598598

599599
/// Default cell builder. Used when [widget.cellBuilder] is null
600600
Widget _defaultCellBuilder(
601-
date,
601+
DateTime date,
602602
List<CalendarEventData<T>> events,
603-
isToday,
604-
isInMonth,
605-
hideDaysNotInMonth,
603+
bool isToday,
604+
bool isInMonth,
605+
bool hideDaysNotInMonth,
606606
) {
607607
final themeColor = context.monthViewColors;
608608

0 commit comments

Comments
 (0)