AgendaStyle constructor

const AgendaStyle(
  1. {TextStyle? appointmentTextStyle,
  2. TextStyle? dayTextStyle,
  3. TextStyle? dateTextStyle,
  4. Color? backgroundColor,
  5. TextStyle placeholderTextStyle = const TextStyle(color: Colors.grey, fontSize: 15)}
)

Creates a agenda style for month view in calendar.

The properties allows to customize the agenda view in month view of SfCalendar.

Implementation

const AgendaStyle(
    {this.appointmentTextStyle,
    this.dayTextStyle,
    this.dateTextStyle,
    this.backgroundColor,
    this.placeholderTextStyle =
        const TextStyle(color: Colors.grey, fontSize: 15)});