diff --git a/lib/screens/patients/profile/lab_result/lab_orders_screen.dart b/lib/screens/patients/profile/lab_result/lab_orders_screen.dart index c8364296..d26ab4c7 100644 --- a/lib/screens/patients/profile/lab_result/lab_orders_screen.dart +++ b/lib/screens/patients/profile/lab_result/lab_orders_screen.dart @@ -108,9 +108,11 @@ class _LabOrdersScreenState extends State { children: [ Row( children: [ - ProfileImageWidget(url:patientsProv - .patientLabResultOrdersList[index] - .doctorImageURL), + ProfileImageWidget( + url: patientsProv + .patientLabResultOrdersList[ + index] + .doctorImageURL), Expanded( child: Padding( padding: const EdgeInsets.fromLTRB( @@ -123,15 +125,18 @@ class _LabOrdersScreenState extends State { '${patientsProv.patientLabResultOrdersList[index].doctorName}', fontSize: 2.5 * SizeConfig.textMultiplier, + fontWeight: FontWeight.bold, ), SizedBox( height: 8, ), AppText( - ' ${patientsProv.patientLabResultOrdersList[index].clinicName}', - fontSize: 2.5 * - SizeConfig - .textMultiplier), + ' ${patientsProv.patientLabResultOrdersList[index].clinicName}', + fontSize: 2 * + SizeConfig.textMultiplier, + color: Theme.of(context) + .primaryColor, + ), SizedBox( height: 8, ), diff --git a/lib/screens/patients/profile/prescriptions/prescriptions_screen.dart b/lib/screens/patients/profile/prescriptions/prescriptions_screen.dart index 061bf648..47fff706 100644 --- a/lib/screens/patients/profile/prescriptions/prescriptions_screen.dart +++ b/lib/screens/patients/profile/prescriptions/prescriptions_screen.dart @@ -55,8 +55,7 @@ class _PrescriptionScreenState extends State { tokenID: token, patientTypeID: patient.patientType, languageID: 2, - setupID: 0 - ); + setupID: 0); patientsProv.getPatientPrescriptions(prescriptionReqModel.toJson()); } @@ -99,7 +98,8 @@ class _PrescriptionScreenState extends State { SizeConfig.realScreenWidth * 0.05, 0), child: ListView.builder( - itemCount: patientsProv.patientPrescriptionsList.length, + itemCount: + patientsProv.patientPrescriptionsList.length, itemBuilder: (BuildContext ctxt, int index) { return InkWell( child: CardWithBgWidget( @@ -108,9 +108,10 @@ class _PrescriptionScreenState extends State { children: [ Row( children: [ - ProfileImageWidget(url:patientsProv - .patientPrescriptionsList[index] - .doctorImageURL), + ProfileImageWidget( + url: patientsProv + .patientPrescriptionsList[index] + .doctorImageURL), Expanded( child: Padding( padding: const EdgeInsets.fromLTRB( @@ -123,15 +124,18 @@ class _PrescriptionScreenState extends State { '${patientsProv.patientPrescriptionsList[index].doctorName}', fontSize: 2.5 * SizeConfig.textMultiplier, + fontWeight: FontWeight.bold, ), SizedBox( height: 8, ), AppText( ' ${patientsProv.patientPrescriptionsList[index].clinicDescription}', - fontSize: 2.5 * + fontSize: 2 * SizeConfig - .textMultiplier), + .textMultiplier, + color: Theme.of(context) + .primaryColor), SizedBox( height: 8, ), diff --git a/lib/screens/patients/profile/radiology/radiology_screen.dart b/lib/screens/patients/profile/radiology/radiology_screen.dart index a55c2704..8b48e88c 100644 --- a/lib/screens/patients/profile/radiology/radiology_screen.dart +++ b/lib/screens/patients/profile/radiology/radiology_screen.dart @@ -123,23 +123,27 @@ class _RadiologyScreenState extends State { '${patientsProv.patientRadiologyList[index].doctorName}', fontSize: 2.5 * SizeConfig.textMultiplier, + fontWeight: FontWeight.bold ), SizedBox( height: 8, ), AppText( 'Invoice No:${patientsProv.patientRadiologyList[index].invoiceNo}', - fontSize: 2.5 * + fontSize: 2 * SizeConfig.textMultiplier, + ), SizedBox( height: 8, ), AppText( - ' ${patientsProv.patientRadiologyList[index].clinicName}', - fontSize: 2.5 * - SizeConfig - .textMultiplier), + ' ${patientsProv.patientRadiologyList[index].clinicName}', + fontSize: 2 * + SizeConfig.textMultiplier, + color: Theme.of(context) + .primaryColor, + ), SizedBox( height: 8, ), diff --git a/lib/screens/patients/profile/vital_sign/vital_sign_screen.dart b/lib/screens/patients/profile/vital_sign/vital_sign_screen.dart index da604792..c5acfeb6 100644 --- a/lib/screens/patients/profile/vital_sign/vital_sign_screen.dart +++ b/lib/screens/patients/profile/vital_sign/vital_sign_screen.dart @@ -109,9 +109,10 @@ class _VitalSignScreenState extends State { children: [ Row( children: [ - ProfileImageWidget(url:patientsProv - .patientVitalSignList[index] - .doctorImageURL), + ProfileImageWidget( + url: patientsProv + .patientVitalSignList[index] + .doctorImageURL), Expanded( child: Padding( padding: const EdgeInsets.fromLTRB( @@ -124,15 +125,18 @@ class _VitalSignScreenState extends State { '${patientsProv.patientVitalSignList[index].doctorName}', fontSize: 2.5 * SizeConfig.textMultiplier, + fontWeight: FontWeight.bold, ), SizedBox( height: 8, ), AppText( - ' ${patientsProv.patientVitalSignList[index].clinicName}', - fontSize: 2.5 * - SizeConfig - .textMultiplier), + ' ${patientsProv.patientVitalSignList[index].clinicName}', + fontSize: 2 * + SizeConfig.textMultiplier, + color: Theme.of(context) + .primaryColor, + ), SizedBox( height: 8, ),