diff options
| author | unitexe <unitexe70@gmail.com> | 2024-12-19 10:04:49 -0600 |
|---|---|---|
| committer | unitexe <unitexe70@gmail.com> | 2024-12-19 10:04:49 -0600 |
| commit | e34c7c4ca151d6ca5282176cdbbe8f9d1844c9ae (patch) | |
| tree | f063f2dd9261969778bd0ca84bd037879ca0ce7a /lib/error_page.dart | |
| parent | 5d7c87a5c3d3dfa3e5cf78f13b85265dc4130fd0 (diff) | |
Diffstat (limited to 'lib/error_page.dart')
| -rw-r--r-- | lib/error_page.dart | 14 |
1 files changed, 14 insertions, 0 deletions
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))), + ); + } +} |
