Aucune description

not_found_page.dart 537B

123456789101112131415161718192021222324
  1. import 'package:flutter/material.dart';
  2. class NotFoundPage extends StatefulWidget {
  3. NotFoundPage({Key key}) : super(key: key);
  4. @override
  5. _NotFoundPageState createState() => _NotFoundPageState();
  6. }
  7. class _NotFoundPageState extends State<NotFoundPage> {
  8. @override
  9. Widget build(BuildContext context) {
  10. return Scaffold(
  11. appBar: AppBar(
  12. title: Text("Not Found"),
  13. ),
  14. body: Container(
  15. child: Center(
  16. child: Text("Sorry, We couldn't found your page"),
  17. ),
  18. ),
  19. );
  20. }
  21. }