We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10237d4 commit 229a593Copy full SHA for 229a593
lib/src/multi_day_view/multi_day_view.dart
@@ -144,7 +144,7 @@ class MultiDayView<T extends Object?> extends StatefulWidget {
144
final WeekNumberBuilder? weekNumberBuilder;
145
146
/// Background color of week view page.
147
- final Color backgroundColor;
+ final Color? backgroundColor;
148
149
/// Scroll offset of week view page.
150
final double scrollOffset;
@@ -284,7 +284,7 @@ class MultiDayView<T extends Object?> extends StatefulWidget {
284
this.weekTitleHeight = 50,
285
this.weekDayBuilder,
286
this.weekNumberBuilder,
287
- this.backgroundColor = Colors.white,
+ this.backgroundColor,
288
this.scrollPhysics,
289
this.scrollOffset = 0.0,
290
this.onEventTap,
0 commit comments