diff --git a/lib/main.dart b/lib/main.dart index 5a7af45..fa3d22f 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -7,7 +7,7 @@ class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( - title: 'Flutter Demo', + title: 'UNCC Sports app Demo', theme: ThemeData( // This is the theme of your application. // @@ -18,9 +18,10 @@ class MyApp extends StatelessWidget { // or simply save your changes to "hot reload" in a Flutter IDE). // Notice that the counter didn't reset back to zero; the application // is not restarted. - primarySwatch: Colors.blue, + primaryColor: Colors.lightGreen.shade900, + accentColor: Colors.yellow.shade600, ), - home: MyHomePage(title: 'Flutter Demo Home Page'), + home: MyHomePage(title: 'UNCC Sports Demo Home Page'), ); } }