From 96ecdc3876586b0d2e2ed04008b2d10137e3789c Mon Sep 17 00:00:00 2001 From: Bnice2max <42919889+Bnice2max@users.noreply.github.com> Date: Fri, 7 Feb 2020 15:00:27 -0500 Subject: [PATCH] storing hello world changes --- lib/main.dart | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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'), ); } }