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