summaryrefslogtreecommitdiff
path: root/lib/home_page.dart
diff options
context:
space:
mode:
authorunitexe <unitexe70@gmail.com>2024-12-19 10:04:49 -0600
committerunitexe <unitexe70@gmail.com>2024-12-19 10:04:49 -0600
commite34c7c4ca151d6ca5282176cdbbe8f9d1844c9ae (patch)
treef063f2dd9261969778bd0ca84bd037879ca0ce7a /lib/home_page.dart
parent5d7c87a5c3d3dfa3e5cf78f13b85265dc4130fd0 (diff)
Initial applicationHEADmain
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))),
+ ),
+ ),
+ ],
+ );
+ }
+}