Updated pages

This commit is contained in:
Patrick Alvin Alcala 2025-12-18 17:13:44 +08:00
parent 226588289f
commit 93858c8ded
4 changed files with 128 additions and 66 deletions

View file

@ -1,9 +1,9 @@
import 'package:flutter/material.dart';
import 'package:gap/gap.dart';
import 'package:go_router/go_router.dart';
import 'package:ocbo_esign_validator/widgets/menu_widget.dart';
import 'package:ocbo_esign_validator/widgets/image_widget.dart';
import 'package:ocbo_esign_validator/widgets/text_widget.dart';
import 'package:ocbo_esign_mobile/widgets/image_widget.dart';
import 'package:ocbo_esign_mobile/widgets/menu_widget.dart';
import 'package:ocbo_esign_mobile/widgets/text_widget.dart';
class IndexPage extends StatelessWidget {
const IndexPage({super.key});
@ -32,10 +32,11 @@ class IndexPage extends StatelessWidget {
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
colors: [
Color.fromRGBO(39, 26, 47, 1),
Color.fromRGBO(51, 34, 61, 1),
Color.fromRGBO(22, 33, 44, 1),
Color.fromRGBO(22, 33, 44, 1),
Color.fromRGBO(24, 45, 40, 1),
Color.fromRGBO(22, 33, 44, 1),
Color.fromRGBO(30, 56, 50, 1),
],
),
),
@ -43,7 +44,7 @@ class IndexPage extends StatelessWidget {
child: Column(
children: [
const Gap(88),
const ImageWidget(imagePath: 'assets/logo.png', size: 140, measureByHeight: true),
const ImageWidget(imagePath: 'assets/logo.webp', size: 140, measureByHeight: false),
const Gap(24),
const TextWidget(
text: "OCBO e-Sign",
@ -60,7 +61,7 @@ class IndexPage extends StatelessWidget {
],
),
),
const MaxGap(200),
const Gap(184),
Row(
mainAxisAlignment: MainAxisAlignment.center,
spacing: 32,
@ -81,6 +82,16 @@ class IndexPage extends StatelessWidget {
),
],
),
const MaxGap(516),
const ImageWidget(imagePath: 'assets/pat-alcala.webp', size: 74, measureByHeight: false),
const Gap(4),
const TextWidget(
text: "Developed By: Pat Alcala",
color: Color.fromRGBO(244, 243, 243, 0.8),
bold: false,
size: 10,
),
const Gap(24),
],
),
),