From: Kevin Worth Date: Mon, 27 Apr 2020 12:38:57 +0000 (-0400) Subject: Add label and TextField for entering the player's game name X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=commitdiff_plain;h=25179ab93a5c4e7ff8a1f7a37b5ab109ff5f8450 Add label and TextField for entering the player's game name --- diff --git a/flutterfamilies/lib/main.dart b/flutterfamilies/lib/main.dart index ae96045..44855ed 100644 --- a/flutterfamilies/lib/main.dart +++ b/flutterfamilies/lib/main.dart @@ -107,6 +107,15 @@ class _MyHomePageState extends State { hintText: 'Enter your (real) name', ), ), + Text( + 'Character:', + style: Theme.of(context).textTheme.headline4, + ), + TextField( + decoration: InputDecoration( + hintText: 'Enter your family/empire name', + ), + ), ], ), ),