From d7d546bec9e1d02f31d4efacd56ce565adef6678 Mon Sep 17 00:00:00 2001 From: Kevin Worth Date: Sun, 26 Apr 2020 22:06:01 -0400 Subject: [PATCH] Change app name to 'Families Game' --- flutterfamilies/lib/main.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flutterfamilies/lib/main.dart b/flutterfamilies/lib/main.dart index 115e7f0..f61141c 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: 'Flutter Demo', + title: 'Families Game', 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: 'Flutter Demo Home Page'), + home: MyHomePage(title: 'Families (Name Game)'), ); } } -- 2.43.0