today text color not change
I can't find how to change today text color. I found todayHighlightColor parameter and changed today border color. but text color not changed! plz let me know how to solve it.
thank you

Hi,
Based on the shared information, we have checked and your requirement is “Changing the today text color in Flutter Date Range Picker” and your requirement can be achieved by using todayTextStyle property in monthCellStyle. We have attached the code snippet for the same.
Also please find the pub documentation link for the same.
Link: https://pub.dev/documentation/syncfusion_flutter_datepicker/latest/datepicker/DateRangePickerMonthCellStyle/todayTextStyle.html
Code snippet:
SfDateRangePicker(
selectionShape: DateRangePickerSelectionShape.rectangle,
monthCellStyle: DateRangePickerMonthCellStyle(
todayTextStyle: TextStyle(
fontStyle: FontStyle.italic,
fontWeight: FontWeight.w400,
fontSize: 12,
color: Colors.red
)
),
)
Screenshot:

We hope that this helps you. Please let us know if you need further assistance.
Regards, Indumathi R
sincerely thank you for your answer! 😃