From 941232d30da01ee5f0997b814afd9e85ade9fb13 Mon Sep 17 00:00:00 2001 From: talksik Date: Fri, 30 Jun 2023 15:50:46 -0700 Subject: [PATCH] getting off the ground with hot reload --- lib/main.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/main.dart b/lib/main.dart index dda5554..73227b5 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -11,7 +11,7 @@ class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( - title: 'Flutter Demo', + title: 'woah', theme: ThemeData( // This is the theme of your application. // @@ -31,7 +31,7 @@ class MyApp extends StatelessWidget { colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), useMaterial3: true, ), - home: const MyHomePage(title: 'Flutter Demo Home Page'), + home: const MyHomePage(title: 'woahh dudeee'), ); } }