From e8731915ad6810bd4c715d5988e54788696c6be1 Mon Sep 17 00:00:00 2001 From: devendra <devendra@devendras-MacBook-Pro.local> Date: Tue, 6 Dec 2022 14:07:23 +0530 Subject: [PATCH] Feat: Terminology like roles and form status update --- lib/constants/app_constants.dart | 5 +++++ lib/l10n/app_en.arb | 2 +- lib/pages/inspection_summary.dart | 9 ++++++--- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/lib/constants/app_constants.dart b/lib/constants/app_constants.dart index 1e46751..9c95932 100644 --- a/lib/constants/app_constants.dart +++ b/lib/constants/app_constants.dart @@ -59,3 +59,8 @@ class Inspector { static const String leadInspector = 'lead_inspector'; static const String assistantInspector = 'assistant_inspector'; } + +class AssessmentSummary { + static const String inspectionSummary = "Inspection Summary"; + static const String assessmentSummary = "Assessment Summary"; +} diff --git a/lib/l10n/app_en.arb b/lib/l10n/app_en.arb index c0379f0..be80fc6 100644 --- a/lib/l10n/app_en.arb +++ b/lib/l10n/app_en.arb @@ -50,7 +50,7 @@ "inspetionCompletedOn": "Assessment completed on", "inspectionSummary": "Assessment Summary", "leadInspector": "Lead assessor", - "assistingInspectors": "Assisting assessors", + "assistingInspectors": "Assisting assessor", "iDisagree": "I disagree", "iConsent": "I consent", "acceptTermsAndConditions": "Please accept terms and conditions", diff --git a/lib/pages/inspection_summary.dart b/lib/pages/inspection_summary.dart index 3ef74b9..ae73853 100644 --- a/lib/pages/inspection_summary.dart +++ b/lib/pages/inspection_summary.dart @@ -207,7 +207,10 @@ class _InspectionSummaryPageState extends State<InspectionSummaryPage> { Container( margin: const EdgeInsets.fromLTRB(20, 30, 20, 15), child: Text( - _summaryField['values'][0]['heading'] ?? '', + _summaryField['values'][0]['heading'] == + AssessmentSummary.inspectionSummary + ? AssessmentSummary.assessmentSummary + : _summaryField['values'][0]['heading'] ?? '', style: GoogleFonts.lato( color: AppColors.black87, fontWeight: FontWeight.w700, @@ -244,7 +247,7 @@ class _InspectionSummaryPageState extends State<InspectionSummaryPage> { ? Container( margin: const EdgeInsets.fromLTRB(20, 10, 20, 15), child: Text( - 'Lead inspector', + 'Lead assessor', style: GoogleFonts.lato( color: AppColors.black87, fontWeight: FontWeight.w700, @@ -263,7 +266,7 @@ class _InspectionSummaryPageState extends State<InspectionSummaryPage> { Container( margin: const EdgeInsets.fromLTRB(20, 10, 20, 15), child: Text( - 'Assisting inspectors', + 'Assisting assessor', style: GoogleFonts.lato( color: AppColors.black87, fontWeight: FontWeight.w700, -- GitLab