From 309d5fe5201ee382f09a575814731f242ec90032 Mon Sep 17 00:00:00 2001 From: Kevin Worth Date: Fri, 8 May 2020 08:59:50 -0400 Subject: [PATCH] Make space for showing the full list of players Up to now, the widgets were centered on the screen. With them now moved up to the top, there is room to show the list of players at the bottom. --- flutterempires/lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutterempires/lib/main.dart b/flutterempires/lib/main.dart index 0d57404..7d972a3 100644 --- a/flutterempires/lib/main.dart +++ b/flutterempires/lib/main.dart @@ -95,7 +95,7 @@ class _MyHomePageState extends State { mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.start, children: [ - Spacer(flex: 10), + Spacer(flex: 1), Text( 'Name:', style: Theme.of(context).textTheme.headline4, -- 2.43.0