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?
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),
),
),