From 74aa580f28bfac67563fae56225ffe4b67a86ff7 Mon Sep 17 00:00:00 2001 From: clopezr1 Date: Thu, 23 Apr 2020 15:10:14 -0400 Subject: [PATCH] says day on events --- lib/monthly_calendar.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/monthly_calendar.dart b/lib/monthly_calendar.dart index 7d755d2..9e5ea05 100644 --- a/lib/monthly_calendar.dart +++ b/lib/monthly_calendar.dart @@ -262,7 +262,7 @@ class _Calendar extends State with TickerProviderStateMixin { child: Center( child: Text( - '${events.length}', + '${date.day}', style: TextStyle().copyWith( color: Colors.white, fontSize: 12.0, @@ -280,6 +280,7 @@ class _Calendar extends State with TickerProviderStateMixin { // my guess is if the game says vs its home // if game says at its away + Color c; if (homeAway){ // could also be if(game == "H") or something c = Color.fromRGBO(0, 112, 60, 1);