From: Kevin Worth <kworth082@gmail.com>
Date: Fri, 8 May 2020 12:59:50 +0000 (-0400)
Subject: Make space for showing the full list of players
X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=1b36d8803dfcb9505acc8967abe323794ba2e571;p=lmno.games

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.
---

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<MyHomePage> {
             mainAxisAlignment: MainAxisAlignment.center,
             crossAxisAlignment: CrossAxisAlignment.start,
             children: <Widget>[
-              Spacer(flex: 10),
+              Spacer(flex: 1),
               Text(
                 'Name:',
                 style: Theme.of(context).textTheme.headline4,