viewHeaderDayTextStyle property
Specifies the day text style for the view header.
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
body: Center(
child: SfTheme(
data: SfThemeData(
calendarThemeData: SfCalendarThemeData(
viewHeaderDayTextStyle: TextStyle(decoration:
TextDecoration.lineThrough)
)
),
child: SfCalendar(),
),
)
);
}
Implementation
final TextStyle? viewHeaderDayTextStyle;