MonthlyView constructor
const
MonthlyView({
- Key? key,
- required DateTime selectedMonth,
- BoxDecoration? decoration,
- List<
MarkedDaysModel> ? markedDaysList, - TextStyle? weekNameHeaderStyle,
- Widget? defaultChild,
- BoxDecoration? userPickedDecoration,
- Widget? userPickedChild,
- EdgeInsets? cellPadding,
- required void onUserPicked(),
Constructs a MonthlyView
widget.
Implementation
const MonthlyView({
super.key,
required this.selectedMonth,
this.decoration,
this.markedDaysList,
this.weekNameHeaderStyle,
this.defaultChild,
this.userPickedDecoration,
this.userPickedChild,
this.cellPadding,
required this.onUserPicked,
});