From e34c7c4ca151d6ca5282176cdbbe8f9d1844c9ae Mon Sep 17 00:00:00 2001 From: unitexe Date: Thu, 19 Dec 2024 10:04:49 -0600 Subject: Initial application --- lib/home_page.dart | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 lib/home_page.dart (limited to 'lib/home_page.dart') 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))), + ), + ), + ], + ); + } +} -- cgit v1.2.3