Updated pages

This commit is contained in:
Patrick Alvin Alcala 2025-12-10 12:43:38 +08:00
parent b352c82f67
commit 4fdcc89c9d
4 changed files with 274 additions and 36 deletions

View file

@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
class ValidationResultPage extends StatelessWidget {
const ValidationResultPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold();
}
}