|
|
|
|
@ -57,7 +57,7 @@ class VitalSignDetailsScreen extends StatelessWidget {
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
"${patient.firstName ?? patient.patientDetails != null ? patient.patientDetails.firstName : patient.fullName}'s",
|
|
|
|
|
"${patient.firstName ?? patient?.patientDetails?.firstName?? patient.fullName?? ''}'s",
|
|
|
|
|
fontSize: SizeConfig.textMultiplier * 1.6,
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
color: Color(0xFF2E303A),
|
|
|
|
|
|