Skip to content
Merged
1 change: 1 addition & 0 deletions a.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hi
5 changes: 1 addition & 4 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
);
}
Expand All @@ -24,6 +21,6 @@ class MyHomePage extends StatelessWidget {

@override
Widget build(BuildContext context) {
return const Placeholder();
return const Scaffold();
}
}
Loading