How to change color of dates in table_calendar Flutter package?

1.3k Views Asked by At

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

1

There are 1 best solutions below

1
Ravindra S. Patil On BEST ANSWER

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