1

I was searching for how to change color of dates in Flutter, and couldn't end up with any solution. ChatGPT says its not even possible? :( Does anyone here know how to do that?

enter image description here

Elle Bishop
  • 307
  • 11

1 Answers1

1

Try below code, change color on your need and refer CalendarStyle and defaultTextStyle

TableCalendar(
   firstDay:DateTime.utc(2010, 10, 16),
   lastDay: DateTime.utc(2030, 3, 14),
   focusedDay: DateTime.now(),
   calendarStyle: CalendarStyle(
   defaultTextStyle:TextStyle(color: Colors.blue),
   weekNumberTextStyle:TextStyle(color: Colors.red),
   weekendTextStyle:TextStyle(color: Colors.pink),
 ),
),

Result-> image

Ravindra S. Patil
  • 11,757
  • 3
  • 13
  • 40
  • 1
    Thanks it works! Here is just one small change, to change weekend dates' color, following code works: weekendTextStyle: TextStyle(color: kSecondaryColor), – Elle Bishop Aug 23 '23 at 15:29