diff --git a/a.txt b/a.txt new file mode 100644 index 0000000..45b983b --- /dev/null +++ b/a.txt @@ -0,0 +1 @@ +hi diff --git a/lib/main.dart b/lib/main.dart index 1dcce24..f5459a0 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -11,9 +11,6 @@ class MyApp extends StatelessWidget { Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', - theme: ThemeData( - colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple), - ), home: const MyHomePage(), ); } @@ -24,6 +21,6 @@ class MyHomePage extends StatelessWidget { @override Widget build(BuildContext context) { - return const Placeholder(); + return const Scaffold(); } }