Bug fix
This commit is contained in:
parent
9764747e02
commit
76bacafef6
@ -154,7 +154,7 @@ class _BranchSelectionPageState extends State<BranchSelectionPage> {
|
||||
} else {
|
||||
// Desktop
|
||||
crossAxisCount = 3;
|
||||
childAspectRatio = 5 ;
|
||||
childAspectRatio = 4;
|
||||
}
|
||||
return Scaffold(
|
||||
backgroundColor: Color(0xFFEFF3F6),
|
||||
|
||||
@ -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,
|
||||
|
||||
1860
lib/hrVerify.dart
1860
lib/hrVerify.dart
File diff suppressed because it is too large
Load Diff
@ -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: '',
|
||||
|
||||
@ -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,
|
||||
),
|
||||
|
||||
Loading…
Reference in New Issue
Block a user