Added extra pages
This commit is contained in:
parent
9fbaca3acc
commit
8d382ad937
2 changed files with 20 additions and 0 deletions
10
lib/pages/approval_page.dart
Normal file
10
lib/pages/approval_page.dart
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
class ApprovalPage extends StatelessWidget {
|
||||||
|
const ApprovalPage({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Scaffold();
|
||||||
|
}
|
||||||
|
}
|
||||||
10
lib/pages/validate_page.dart
Normal file
10
lib/pages/validate_page.dart
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
class ValidatePage extends StatelessWidget {
|
||||||
|
const ValidatePage({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Scaffold();
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue