viewHeaderDateTextStyle property

TextStyle? viewHeaderDateTextStyle
final

Specifies the date text style for the view header.

Widget build(BuildContext context) {
 return Scaffold(
   appBar: AppBar(),
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           calendarThemeData: SfCalendarThemeData(
             viewHeaderDateTextStyle: TextStyle(decoration:
               TextDecoration.underline,color: Colors.red)
           )
         ),
         child: SfCalendar(),
         ),
     )
  );
}

Implementation

final TextStyle? viewHeaderDateTextStyle;