save before flutter upgrade

This commit is contained in:
Abraham
2025-07-15 16:40:14 -07:00
commit 813c586a1c
197 changed files with 11144 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
class PageNotFoundPage extends StatelessWidget {
const PageNotFoundPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Text(
'404 - Page not found',
style: GoogleFonts.montserratAlternates(
fontSize: 20, fontWeight: FontWeight.bold),
),
),
);
}
}