From e34c7c4ca151d6ca5282176cdbbe8f9d1844c9ae Mon Sep 17 00:00:00 2001 From: unitexe Date: Thu, 19 Dec 2024 10:04:49 -0600 Subject: Initial application --- lib/error_page.dart | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lib/error_page.dart (limited to 'lib/error_page.dart') diff --git a/lib/error_page.dart b/lib/error_page.dart new file mode 100644 index 0000000..d7d0e11 --- /dev/null +++ b/lib/error_page.dart @@ -0,0 +1,14 @@ +import 'package:flutter/widgets.dart'; + +class ErrorPage extends StatelessWidget { + const ErrorPage({super.key}); + + @override + Widget build(BuildContext context) { + return const Center( + child: Text( + 'Error', + style: TextStyle(color: Color(0xFFFFFF00))), + ); + } +} -- cgit v1.2.3