Updated pages

This commit is contained in:
Patrick Alvin Alcala 2026-01-26 13:41:51 +08:00
parent 5a05058256
commit fd33a67b47
5 changed files with 226 additions and 114 deletions

View file

@ -0,0 +1,29 @@
import 'package:flutter/material.dart';
class ValidateDetailPage extends StatelessWidget {
const ValidateDetailPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
resizeToAvoidBottomInset: false,
body: Container(
alignment: Alignment.center,
height: MediaQuery.of(context).size.height,
decoration: const BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
colors: [
Color.fromRGBO(37, 25, 44, 1),
Color.fromRGBO(22, 33, 44, 1),
Color.fromRGBO(22, 33, 44, 1),
Color.fromRGBO(22, 33, 44, 1),
Color.fromRGBO(25, 46, 41, 1),
],
),
),
),
);
}
}