diff --git a/lib/pages/MonthValuesPage.dart b/lib/pages/MonthValuesPage.dart index 1ef7d9b..8f9dce2 100644 --- a/lib/pages/MonthValuesPage.dart +++ b/lib/pages/MonthValuesPage.dart @@ -154,11 +154,36 @@ class MonthValuesPage extends StatelessWidget { "6", style: TextStyle(fontSize: 20) ), + Spacer(), + Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Text("1", style: TextStyle(color: Colors.grey)), + Text("1", style: TextStyle(color: Colors.grey)), + Text("1", style: TextStyle(color: Colors.blue)), + Text("1", style: TextStyle(color: Colors.grey)) + ], + ) ], ) ), Container( - child: Text("test") + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + Spacer(), + Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Text("1", style: TextStyle(color: Colors.grey)), + Text("1", style: TextStyle(color: Colors.grey)), + Text("1", style: TextStyle(color: Colors.blue)), + Text("1", style: TextStyle(color: Colors.grey)) + ], + ) + ] + ) ) ] )