404.dart 363 B

123456789101112131415
  1. import 'package:flutter/material.dart';
  2. class WidgetNotFound extends StatelessWidget {
  3. Widget build(BuildContext context) {
  4. return Scaffold(
  5. appBar: AppBar(
  6. elevation: 0.0,
  7. title: Text("widget not found"),
  8. ),
  9. body: Center(
  10. child: Text("widget not found")
  11. )
  12. );
  13. }
  14. }