summaryrefslogtreecommitdiff
path: root/lib/home_page.dart
diff options
context:
space:
mode:
Diffstat (limited to 'lib/home_page.dart')
-rw-r--r--lib/home_page.dart22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/home_page.dart b/lib/home_page.dart
new file mode 100644
index 0000000..83346c4
--- /dev/null
+++ b/lib/home_page.dart
@@ -0,0 +1,22 @@
+import 'package:flutter/widgets.dart';
+import 'app_bar.dart';
+
+class HomePage extends StatelessWidget {
+ const HomePage({super.key});
+
+ @override
+ Widget build(BuildContext context) {
+ return const Column(
+ children: [
+ AppBar(),
+ Expanded(
+ child: Center(
+ child: Text(
+ 'Home',
+ style: TextStyle(color: Color(0xFFFFFF00))),
+ ),
+ ),
+ ],
+ );
+ }
+}