flutter-examples icon indicating copy to clipboard operation
flutter-examples copied to clipboard

today text color not change

Open sgmsgood opened this issue 3 years ago • 2 comments

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

calendar

sgmsgood avatar Jun 29 '22 07:06 sgmsgood

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:

image

We hope that this helps you. Please let us know if you need further assistance.

Regards, Indumathi R

Indumathi1195R avatar Jun 30 '22 10:06 Indumathi1195R

sincerely thank you for your answer! 😃

sgmsgood avatar Jul 01 '22 06:07 sgmsgood