This commit is contained in:
Surendiran 2025-11-17 11:12:38 +05:30
parent 9764747e02
commit 76bacafef6
6 changed files with 939 additions and 940 deletions

BIN
lib.zip

Binary file not shown.

View File

@ -154,7 +154,7 @@ class _BranchSelectionPageState extends State<BranchSelectionPage> {
} else { } else {
// Desktop // Desktop
crossAxisCount = 3; crossAxisCount = 3;
childAspectRatio = 5 ; childAspectRatio = 4;
} }
return Scaffold( return Scaffold(
backgroundColor: Color(0xFFEFF3F6), backgroundColor: Color(0xFFEFF3F6),

View File

@ -868,7 +868,7 @@ class _HrPolicyDetailsState extends State<hrPolicyDetails>
Expanded( Expanded(
flex: 2, flex: 2,
child: Text( child: Text(
"${item['formatted_dob'] ?? ''}", "${item['formatted_dob'].replaceAll("/", "-") ?? ''}",
style: GoogleFonts.poppins( style: GoogleFonts.poppins(
color: Color(0xFF000000), color: Color(0xFF000000),
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,

File diff suppressed because it is too large Load Diff

View File

@ -23,7 +23,6 @@ import 'package:firebase_core/firebase_core.dart';
import 'cdTransactionDetails.dart'; import 'cdTransactionDetails.dart';
import 'email_verify.dart'; import 'email_verify.dart';
import 'dart:html' as html;
Future<void> main() async { Future<void> main() async {
// html.window.onBeforeUnload.listen((event) { // html.window.onBeforeUnload.listen((event) {
@ -86,12 +85,12 @@ Future<void> main() async {
), ),
'home': (context) => MyApp(), 'home': (context) => MyApp(),
'hrLogin': (context) => MyHrLogin(), 'hrLogin': (context) => MyHrLogin(),
'hrVerify': (context) => MyHrVerify( // 'hrVerify': (context) => MyHrVerify(
verificationId: '', // verificationId: '',
mobileNumber: '', // mobileNumber: '',
resendToken: null, // resendToken: null,
onResendCode: (String, int) {}, // onResendCode: (String, int) {},
), // ),
'hrHome': (context) => MyHrHome(), 'hrHome': (context) => MyHrHome(),
'excelVerify': (context) => const excelVerify( 'excelVerify': (context) => const excelVerify(
ClientId: '', ClientId: '',

View File

@ -215,7 +215,7 @@ class _PreEnrollmentState extends State<PreEnrollment> {
crossAxisCount: 4, crossAxisCount: 4,
crossAxisSpacing: 20, crossAxisSpacing: 20,
mainAxisSpacing: 20, mainAxisSpacing: 20,
childAspectRatio: 2.6, childAspectRatio: 2.4,
// childAspectRatio: aspectRatio, // childAspectRatio: aspectRatio,
// childAspectRatio: 2.1, // childAspectRatio: 2.1,
), ),