diff --git a/lib/screens/patients/profile/lab_result/LabResultWidget.dart b/lib/screens/patients/profile/lab_result/LabResultWidget.dart index c63f5bdf..72131f59 100644 --- a/lib/screens/patients/profile/lab_result/LabResultWidget.dart +++ b/lib/screens/patients/profile/lab_result/LabResultWidget.dart @@ -135,7 +135,7 @@ class LabResultWidget extends StatelessWidget { color: Colors.white, child: Center( child: AppText( - patientLabResultList[index].resultValue + + "${patientLabResultList[index].resultValue ?? ""}" + " " + "${patientLabResultList[index].uOM ?? ""}", textAlign: TextAlign.center, diff --git a/lib/widgets/patients/profile/patient_profile_header_with_appointment_card_app_bar.dart b/lib/widgets/patients/profile/patient_profile_header_with_appointment_card_app_bar.dart index ae85a574..5de6299c 100644 --- a/lib/widgets/patients/profile/patient_profile_header_with_appointment_card_app_bar.dart +++ b/lib/widgets/patients/profile/patient_profile_header_with_appointment_card_app_bar.dart @@ -326,7 +326,7 @@ class PatientProfileHeaderWhitAppointmentAppBar extends StatelessWidget '${TranslationBase.of(context).dr}$doctorName', color: Colors.black, fontWeight: FontWeight.w600, - fontSize: 12, + fontSize: 9, ), if (orderNo != null && !isPrescriptions) Row(