timeIndicatorStyle property

TextStyle? timeIndicatorStyle
final

Allows to set style for the time indicator text.

See also:

Widget build(BuildContext context) {
  return Scaffold(
    body: SfCalendar(
      view: CalendarView.month,
      showWeekNumber: true,
      allowDragAndDrop: true,
      dragAndDropSettings: DragAndDropSettings(
        allowNavigation: true,
        allowScroll: true,
        autoNavigateDelay: Duration(seconds: 1),
        indicatorTimeFormat: 'HH:mm a',
        showTimeIndicator: true,
        timeIndicatorStyle: TextStyle(color: Colors.cyan),
      ),
    ),
  );
}

Implementation

final TextStyle? timeIndicatorStyle;