From c858a46ae8a621fba5bdb0cdd999e14177a26605 Mon Sep 17 00:00:00 2001
From: Kevin Worth <kworth082@gmail.com>
Date: Sun, 3 May 2020 23:13:17 -0400
Subject: [PATCH] Rename "Families" to "Empires"

Because the name is better
---
 flutterfamilies/lib/main.dart | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/flutterfamilies/lib/main.dart b/flutterfamilies/lib/main.dart
index 7b8c856..92cda02 100644
--- a/flutterfamilies/lib/main.dart
+++ b/flutterfamilies/lib/main.dart
@@ -9,7 +9,7 @@ class MyApp extends StatelessWidget {
   @override
   Widget build(BuildContext context) {
     return MaterialApp(
-      title: 'Families Game',
+      title: 'Empires',
       theme: ThemeData(
         // This is the theme of your application.
         //
@@ -26,7 +26,7 @@ class MyApp extends StatelessWidget {
         // closer together (more dense) than on mobile platforms.
         visualDensity: VisualDensity.adaptivePlatformDensity,
       ),
-      home: MyHomePage(title: 'Families / Empires'),
+      home: MyHomePage(title: 'Empires'),
     );
   }
 }
@@ -101,7 +101,7 @@ class _MyHomePageState extends State<MyHomePage> {
               ),
               TextField(
                 decoration: InputDecoration(
-                  hintText: 'Enter your family/empire name',
+                  hintText: 'Enter your empire character name',
                 ),
               ),
               Spacer(flex: 10),
-- 
2.45.2