|
|
|
|
@ -369,7 +369,7 @@ class PatientProfileHeaderWhitAppointmentAppBar extends StatelessWidget with Pre
|
|
|
|
|
'${TranslationBase.of(context).dr}$doctorName',
|
|
|
|
|
color: Colors.black,
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
),
|
|
|
|
|
if (orderNo != null && !isPrescriptions)
|
|
|
|
|
Row(
|
|
|
|
|
@ -377,10 +377,10 @@ class PatientProfileHeaderWhitAppointmentAppBar extends StatelessWidget with Pre
|
|
|
|
|
Texts(
|
|
|
|
|
'Order No: ',
|
|
|
|
|
color: Colors.grey[800],
|
|
|
|
|
fontSize: 14
|
|
|
|
|
fontSize: 12
|
|
|
|
|
),
|
|
|
|
|
Texts(
|
|
|
|
|
orderNo ?? '',fontSize: 14
|
|
|
|
|
orderNo ?? '',fontSize: 12
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
@ -390,11 +390,11 @@ class PatientProfileHeaderWhitAppointmentAppBar extends StatelessWidget with Pre
|
|
|
|
|
Texts(
|
|
|
|
|
'Invoice: ',
|
|
|
|
|
color: Colors.grey[800],
|
|
|
|
|
fontSize: 14
|
|
|
|
|
fontSize: 12
|
|
|
|
|
),
|
|
|
|
|
Texts(
|
|
|
|
|
invoiceNO,
|
|
|
|
|
fontSize: 14
|
|
|
|
|
fontSize: 12
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
@ -404,11 +404,11 @@ class PatientProfileHeaderWhitAppointmentAppBar extends StatelessWidget with Pre
|
|
|
|
|
Texts(
|
|
|
|
|
'Branch: ',
|
|
|
|
|
color: Colors.grey[800],
|
|
|
|
|
fontSize: 14
|
|
|
|
|
fontSize: 12
|
|
|
|
|
),
|
|
|
|
|
Texts(
|
|
|
|
|
branch?? '',
|
|
|
|
|
fontSize: 14
|
|
|
|
|
fontSize: 12
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
@ -418,11 +418,11 @@ class PatientProfileHeaderWhitAppointmentAppBar extends StatelessWidget with Pre
|
|
|
|
|
Texts(
|
|
|
|
|
'Clinic: ',
|
|
|
|
|
color: Colors.grey[800],
|
|
|
|
|
fontSize: 14
|
|
|
|
|
fontSize: 12
|
|
|
|
|
),
|
|
|
|
|
Texts(
|
|
|
|
|
clinic?? '',
|
|
|
|
|
fontSize: 14
|
|
|
|
|
fontSize: 12
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
@ -432,7 +432,7 @@ class PatientProfileHeaderWhitAppointmentAppBar extends StatelessWidget with Pre
|
|
|
|
|
child: Texts(
|
|
|
|
|
!isPrescriptions? 'Result Date: ': 'Prescriptions Date ',
|
|
|
|
|
color: Colors.grey[800],
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Texts(
|
|
|
|
|
@ -495,5 +495,5 @@ class PatientProfileHeaderWhitAppointmentAppBar extends StatelessWidget with Pre
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Size get preferredSize => Size(double.maxFinite,280);
|
|
|
|
|
Size get preferredSize => Size(double.maxFinite,290);
|
|
|
|
|
}
|
|
|
|
|
|