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 {
// Desktop
crossAxisCount = 3;
childAspectRatio = 5 ;
childAspectRatio = 4;
}
return Scaffold(
backgroundColor: Color(0xFFEFF3F6),

View File

@ -868,7 +868,7 @@ class _HrPolicyDetailsState extends State<hrPolicyDetails>
Expanded(
flex: 2,
child: Text(
"${item['formatted_dob'] ?? ''}",
"${item['formatted_dob'].replaceAll("/", "-") ?? ''}",
style: GoogleFonts.poppins(
color: Color(0xFF000000),
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 'email_verify.dart';
import 'dart:html' as html;
Future<void> main() async {
// html.window.onBeforeUnload.listen((event) {
@ -86,12 +85,12 @@ Future<void> main() async {
),
'home': (context) => MyApp(),
'hrLogin': (context) => MyHrLogin(),
'hrVerify': (context) => MyHrVerify(
verificationId: '',
mobileNumber: '',
resendToken: null,
onResendCode: (String, int) {},
),
// 'hrVerify': (context) => MyHrVerify(
// verificationId: '',
// mobileNumber: '',
// resendToken: null,
// onResendCode: (String, int) {},
// ),
'hrHome': (context) => MyHrHome(),
'excelVerify': (context) => const excelVerify(
ClientId: '',

View File

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