not_found.dart 376 B

1234567891011121314151617
  1. import 'package:flutter/material.dart';
  2. class NotFoundPage extends StatelessWidget {
  3. const NotFoundPage({Key? key}) : super(key: key);
  4. @override
  5. Widget build(BuildContext context) {
  6. return Scaffold(
  7. appBar: AppBar(
  8. title: const Text('404'),
  9. ),
  10. body: const Center(
  11. child: Text('您访问的页面不存在'),
  12. ),
  13. );
  14. }
  15. }