Houshan-Basa/lib/ui/widgets/sections/empty/not_found.dart

17 lines
360 B
Dart

import 'package:flutter/material.dart';
class NotFoundPage extends StatelessWidget {
const NotFoundPage({super.key});
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(
child: Text(
'404 Not Found',
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
)),
);
}
}