timeIndicatorTextStyle property

TextStyle? timeIndicatorTextStyle
final

Specifies the text style for the timeIndicator text of dragging appointment in calendar.

Widget build(BuildContext context) {
   return Scaffold(
   appBar: AppBar(),
     body: Center(
       child: SfTheme(
         data: SfThemeData(
           calendarThemeData: SfCalendarThemeData(
           timeIndicatorTextStyle: TextStyle(color: Colors.grey,
           fontSize: 20),
           )
         ),
         child: SfCalendar(),
         ),
     )
  );
}

Implementation

final TextStyle? timeIndicatorTextStyle;