trailingDatesTextStyle property
Specify the date picker trailing dates cell text style.
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
body: Center(
child: SfTheme(
data: SfThemeData(
dateRangePickerThemeData: SfDateRangePickerThemeData(
trailingDatesTextStyle: TextStyle(color: Colors.red)
)
),
child: SfDateRangePicker(),
),
)
);
}
Implementation
final TextStyle? trailingDatesTextStyle;