@ -40,7 +40,7 @@ class _LaboratoryResultPageState extends State<LaboratoryResultPage> {
isShowAppBar: true,
appBar: PatientProfileAppBar(
widget.patient,
isInpatient:widget.isInpatient,
isFromLabResult: true,
appointmentDate: widget.patientLabOrders.orderDate,
),
@ -54,7 +54,6 @@ class _LabsHomePageState extends State<LabsHomePage> {
patient,
isInpatient: isInpatient,
body: SingleChildScrollView(
@ -551,6 +551,6 @@ class PatientProfileAppBar extends StatelessWidget
@override
Size get preferredSize =>
Size(double.maxFinite, height == 0
? isInpatient ? 160 : isAppointmentHeader ? 290 : 170
? isInpatient ? (isFromLabResult?170:175) : isAppointmentHeader ? 290 : 175
: height);
}