Skip to content

Commit

Permalink
Remove redundant piece of code
Browse files Browse the repository at this point in the history
  • Loading branch information
sinasystem committed Jun 6, 2022
1 parent d08d071 commit 08ba4f6
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,9 @@ class MyApp extends StatelessWidget {
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: const MyHomePage(),
home: const IntroScreen(),
theme: AppTheme.lightTheme,
);
}
}

class MyHomePage extends StatelessWidget {
const MyHomePage({Key? key}) : super(key: key);

@override
Widget build(BuildContext context) {
return const Scaffold(
body: IntroScreen(),
);
}
}

0 comments on commit 08ba4f6

Please sign in to comment.