timeTextStyle property
Specifies the time label text style in days and timeline views.
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
body: Center(
child: SfTheme(
data: SfThemeData(
calendarThemeData: SfCalendarThemeData(
timeTextStyle: TextStyle(color:Colors.green)
)
),
child: SfCalendar(),
),
)
);
}
Implementation
final TextStyle? timeTextStyle;