notfound.dart 468 B

123456789101112131415
  1. import 'package:flutter/material.dart';
  2. class NotFoundPage extends StatefulWidget {
  3. const NotFoundPage({Key? key}) : super(key: key);
  4. @override
  5. State<NotFoundPage> createState() => _NotFoundPageState();
  6. }
  7. class _NotFoundPageState extends State<NotFoundPage> {
  8. @override
  9. Widget build(BuildContext context) {
  10. return Container(color: Colors.yellow,alignment: Alignment.center,child: const Text('404 Page not Found!',textAlign: TextAlign.center,),);
  11. }
  12. }