Merge branch 'medical-profile-services' into 'development'

hot fix

See merge request Cloud_Solution/doctor_app_flutter!708
merge-requests/709/merge
Mohammad Aljammal 5 years ago
commit 4b6263ca1a

@ -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),

@ -202,7 +202,7 @@ class VitalSignItemDetailsScreen 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",
fontFamily: 'Poppins',
fontSize: SizeConfig.textMultiplier * 1.6,
fontWeight: FontWeight.w600,

Loading…
Cancel
Save