This commit is contained in:
2023-12-25 16:23:16 +02:00
parent c4dee592f4
commit ed52d29201
4 changed files with 96 additions and 35 deletions

View File

@@ -8,8 +8,12 @@ class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: HomeScreen(),
return MaterialApp(
title: "Entry Point",
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const HomeScreen(),
);
}
}