From fe502ec32c9684aa6b95c9bfd891715dbf2a7968 Mon Sep 17 00:00:00 2001 From: BroodjeAap Date: Tue, 8 Dec 2020 17:38:19 +0100 Subject: [PATCH] Manually adding pageview 'numbers' ? --- lib/pages/MonthValuesPage.dart | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) 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)) + ], + ) + ] + ) ) ] )