says day on events

This commit is contained in:
clopezr1
2020-04-23 15:10:14 -04:00
parent 5bc25f8074
commit 74aa580f28

View File

@@ -262,7 +262,7 @@ class _Calendar extends State<Calendar> with TickerProviderStateMixin {
child: Center( child: Center(
child: Text( child: Text(
'${events.length}', '${date.day}',
style: TextStyle().copyWith( style: TextStyle().copyWith(
color: Colors.white, color: Colors.white,
fontSize: 12.0, fontSize: 12.0,
@@ -280,6 +280,7 @@ class _Calendar extends State<Calendar> with TickerProviderStateMixin {
// my guess is if the game says vs its home // my guess is if the game says vs its home
// if game says at its away // if game says at its away
Color c; Color c;
if (homeAway){ // could also be if(game == "H") or something if (homeAway){ // could also be if(game == "H") or something
c = Color.fromRGBO(0, 112, 60, 1); c = Color.fromRGBO(0, 112, 60, 1);