]> git.cworth.org Git - lmno.games/commitdiff
Add label and TextField for entering the player's game name
authorKevin Worth <kworth082@gmail.com>
Mon, 27 Apr 2020 12:38:57 +0000 (08:38 -0400)
committerCarl Worth <cworth@cworth.org>
Sat, 23 May 2020 13:49:00 +0000 (06:49 -0700)
flutterfamilies/lib/main.dart

index ae9604574facc4526e7d077044068ab7fbca47b0..44855ed0da655716f201f0c0844daa9743ee6f71 100644 (file)
@@ -107,6 +107,15 @@ class _MyHomePageState extends State<MyHomePage> {
                 hintText: 'Enter your (real) name',
               ),
             ),
+            Text(
+              'Character:',
+              style: Theme.of(context).textTheme.headline4,
+            ),
+            TextField(
+              decoration: InputDecoration(
+                hintText: 'Enter your family/empire name',
+              ),
+            ),
           ],
         ),
       ),