agendaDateTextStyle property
Specifies the agenda view date text style.
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
body: Center(
child: SfTheme(
data: SfThemeData(
calendarThemeData: SfCalendarThemeData(
agendaDateTextStyle: TextStyle(backgroundColor:
Colors.yellow)
)
),
child: SfCalendar(),
),
)
);
}
Implementation
final TextStyle? agendaDateTextStyle;