|
|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
import 'package:doctor_app_flutter/config/size_config.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/core/viewModel/project_view_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/icons_app/doctor_app_icons.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/patient/patiant_info_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/patient/profile/patient_profile_app_bar_model.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/util/date-utils.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/util/helpers.dart';
|
|
|
|
|
@ -13,21 +14,64 @@ import 'package:url_launcher/url_launcher.dart';
|
|
|
|
|
import 'large_avatar.dart';
|
|
|
|
|
|
|
|
|
|
class PatientProfileAppBar extends StatelessWidget with PreferredSizeWidget {
|
|
|
|
|
final PatientProfileAppBarModel patientProfileAppBarModel;
|
|
|
|
|
final bool isFromLabResult;
|
|
|
|
|
final PatiantInformtion? patient;
|
|
|
|
|
final PatientProfileAppBarModel? patientProfileAppBarModel;
|
|
|
|
|
final double? height;
|
|
|
|
|
final bool isInpatient;
|
|
|
|
|
final bool isDischargedPatient;
|
|
|
|
|
final bool isFromLiveCare;
|
|
|
|
|
|
|
|
|
|
final String? doctorName;
|
|
|
|
|
final String? branch;
|
|
|
|
|
final DateTime? appointmentDate;
|
|
|
|
|
final String? profileUrl;
|
|
|
|
|
final String? invoiceNO;
|
|
|
|
|
final String? orderNo;
|
|
|
|
|
final bool? isPrescriptions;
|
|
|
|
|
final bool? isMedicalFile;
|
|
|
|
|
final String? episode;
|
|
|
|
|
final String? visitDate;
|
|
|
|
|
final String? clinic;
|
|
|
|
|
final bool? isAppointmentHeader;
|
|
|
|
|
final bool? isFromLabResult;
|
|
|
|
|
final VoidCallback? onPressed;
|
|
|
|
|
|
|
|
|
|
PatientProfileAppBar({required this.patientProfileAppBarModel, this.isFromLabResult = false, this.onPressed});
|
|
|
|
|
PatientProfileAppBar(this.patient,
|
|
|
|
|
{ this.patientProfileAppBarModel,
|
|
|
|
|
this.isFromLabResult = false,
|
|
|
|
|
this.onPressed,
|
|
|
|
|
this.height,
|
|
|
|
|
this.isInpatient = false,
|
|
|
|
|
this.isDischargedPatient = false,
|
|
|
|
|
this.isFromLiveCare = false,
|
|
|
|
|
this.doctorName,
|
|
|
|
|
this.branch,
|
|
|
|
|
this.appointmentDate,
|
|
|
|
|
this.profileUrl,
|
|
|
|
|
this.invoiceNO,
|
|
|
|
|
this.orderNo,
|
|
|
|
|
this.isPrescriptions,
|
|
|
|
|
this.isMedicalFile,
|
|
|
|
|
this.episode,
|
|
|
|
|
this.visitDate,
|
|
|
|
|
this.clinic,
|
|
|
|
|
this.isAppointmentHeader});
|
|
|
|
|
late PatiantInformtion localPatient;
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
ProjectViewModel projectViewModel = Provider.of(context);
|
|
|
|
|
if (patient == null) {
|
|
|
|
|
localPatient = patientProfileAppBarModel!.patient!;
|
|
|
|
|
} else {
|
|
|
|
|
localPatient = patient!;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int gender = 1;
|
|
|
|
|
if (patientProfileAppBarModel.patient!.patientDetails != null) {
|
|
|
|
|
gender = patientProfileAppBarModel.patient!.patientDetails!.gender!;
|
|
|
|
|
if (localPatient!.patientDetails != null) {
|
|
|
|
|
gender = localPatient!.patientDetails!.gender!;
|
|
|
|
|
} else {
|
|
|
|
|
gender = patientProfileAppBarModel.patient!.gender!;
|
|
|
|
|
gender = localPatient!.gender!;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Container(
|
|
|
|
|
@ -58,12 +102,12 @@ class PatientProfileAppBar extends StatelessWidget with PreferredSizeWidget {
|
|
|
|
|
),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: AppText(
|
|
|
|
|
patientProfileAppBarModel.patient!.firstName != null
|
|
|
|
|
? (Helpers.capitalize(patientProfileAppBarModel.patient!.firstName) +
|
|
|
|
|
localPatient!.firstName != null
|
|
|
|
|
? (Helpers.capitalize(localPatient!.firstName) +
|
|
|
|
|
" " +
|
|
|
|
|
Helpers.capitalize(patientProfileAppBarModel.patient!.lastName))
|
|
|
|
|
: Helpers.capitalize(patientProfileAppBarModel.patient!.fullName ??
|
|
|
|
|
patientProfileAppBarModel.patient!.patientDetails!.fullName!),
|
|
|
|
|
Helpers.capitalize(localPatient!.lastName))
|
|
|
|
|
: Helpers.capitalize(localPatient!.fullName ??
|
|
|
|
|
localPatient!.patientDetails!.fullName!),
|
|
|
|
|
fontSize: SizeConfig.textMultiplier * 1.8,
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
@ -84,7 +128,7 @@ class PatientProfileAppBar extends StatelessWidget with PreferredSizeWidget {
|
|
|
|
|
margin: EdgeInsets.symmetric(horizontal: 4),
|
|
|
|
|
child: InkWell(
|
|
|
|
|
onTap: () {
|
|
|
|
|
launch("tel://" + patientProfileAppBarModel.patient!.mobileNumber!);
|
|
|
|
|
launch("tel://" + localPatient!.mobileNumber!);
|
|
|
|
|
},
|
|
|
|
|
child: Icon(
|
|
|
|
|
Icons.phone,
|
|
|
|
|
@ -92,24 +136,30 @@ class PatientProfileAppBar extends StatelessWidget with PreferredSizeWidget {
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
if(patientProfileAppBarModel.videoCallDurationStream != null)
|
|
|
|
|
StreamBuilder(
|
|
|
|
|
stream: patientProfileAppBarModel.videoCallDurationStream,
|
|
|
|
|
builder: (BuildContext context, AsyncSnapshot<String> snapshot) {
|
|
|
|
|
if(snapshot.hasData && snapshot.data != null)
|
|
|
|
|
return InkWell(
|
|
|
|
|
onTap: (){
|
|
|
|
|
},
|
|
|
|
|
child: Container(
|
|
|
|
|
decoration: BoxDecoration(color: Colors.red, borderRadius: BorderRadius.circular(20)),
|
|
|
|
|
padding: EdgeInsets.symmetric(vertical: 2, horizontal: 10),
|
|
|
|
|
child: Text(snapshot.data!, style: TextStyle(color: Colors.white),),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
else
|
|
|
|
|
return Container();
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
if (patientProfileAppBarModel!.videoCallDurationStream != null)
|
|
|
|
|
StreamBuilder(
|
|
|
|
|
stream: patientProfileAppBarModel!.videoCallDurationStream,
|
|
|
|
|
builder:
|
|
|
|
|
(BuildContext context, AsyncSnapshot<String> snapshot) {
|
|
|
|
|
if (snapshot.hasData && snapshot.data != null)
|
|
|
|
|
return InkWell(
|
|
|
|
|
onTap: () {},
|
|
|
|
|
child: Container(
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
color: Colors.red,
|
|
|
|
|
borderRadius: BorderRadius.circular(20)),
|
|
|
|
|
padding: EdgeInsets.symmetric(
|
|
|
|
|
vertical: 2, horizontal: 10),
|
|
|
|
|
child: Text(
|
|
|
|
|
snapshot.data!,
|
|
|
|
|
style: TextStyle(color: Colors.white),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
else
|
|
|
|
|
return Container();
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
]),
|
|
|
|
|
),
|
|
|
|
|
Row(children: [
|
|
|
|
|
@ -120,7 +170,9 @@ class PatientProfileAppBar extends StatelessWidget with PreferredSizeWidget {
|
|
|
|
|
width: SizeConfig.getTextMultiplierBasedOnWidth() * 20,
|
|
|
|
|
height: SizeConfig.getTextMultiplierBasedOnWidth() * 20,
|
|
|
|
|
child: Image.asset(
|
|
|
|
|
gender == 1 ? 'assets/images/male_avatar.png' : 'assets/images/female_avatar.png',
|
|
|
|
|
gender == 1
|
|
|
|
|
? 'assets/images/male_avatar.png'
|
|
|
|
|
: 'assets/images/female_avatar.png',
|
|
|
|
|
fit: BoxFit.cover,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
@ -132,12 +184,12 @@ class PatientProfileAppBar extends StatelessWidget with PreferredSizeWidget {
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
patientProfileAppBarModel.patient!.patientStatusType != null
|
|
|
|
|
localPatient!.patientStatusType != null
|
|
|
|
|
? Container(
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
|
children: [
|
|
|
|
|
patientProfileAppBarModel.patient!.patientStatusType == 43
|
|
|
|
|
localPatient!.patientStatusType == 43
|
|
|
|
|
? AppText(
|
|
|
|
|
TranslationBase.of(context).arrivedP,
|
|
|
|
|
color: Colors.green,
|
|
|
|
|
@ -156,8 +208,11 @@ class PatientProfileAppBar extends StatelessWidget with PreferredSizeWidget {
|
|
|
|
|
.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3.5,
|
|
|
|
|
),
|
|
|
|
|
patientProfileAppBarModel.patient!.startTime != null
|
|
|
|
|
? AppText(patientProfileAppBarModel.patient!.startTime != null ? patientProfileAppBarModel.patient!.startTime : '',
|
|
|
|
|
localPatient!.startTime != null
|
|
|
|
|
? AppText(
|
|
|
|
|
localPatient!.startTime != null
|
|
|
|
|
? localPatient!.startTime
|
|
|
|
|
: '',
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
fontSize: SizeConfig
|
|
|
|
|
.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
@ -185,7 +240,7 @@ class PatientProfileAppBar extends StatelessWidget with PreferredSizeWidget {
|
|
|
|
|
width: 1,
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
patient.patientId.toString(),
|
|
|
|
|
localPatient!.patientId.toString(),
|
|
|
|
|
fontSize:
|
|
|
|
|
SizeConfig.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3.5,
|
|
|
|
|
@ -198,23 +253,25 @@ class PatientProfileAppBar extends StatelessWidget with PreferredSizeWidget {
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
patientProfileAppBarModel.patient!.nationalityName ??
|
|
|
|
|
patientProfileAppBarModel.patient!.nationality ??
|
|
|
|
|
patientProfileAppBarModel.patient!.nationalityId ??
|
|
|
|
|
localPatient!.nationalityName ??
|
|
|
|
|
localPatient!.nationality ??
|
|
|
|
|
localPatient!.nationalityId ??
|
|
|
|
|
'',
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
fontSize:
|
|
|
|
|
SizeConfig.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3.5,
|
|
|
|
|
),
|
|
|
|
|
patientProfileAppBarModel.patient!.nationalityFlagURL != null
|
|
|
|
|
localPatient!.nationalityFlagURL != null
|
|
|
|
|
? ClipRRect(
|
|
|
|
|
borderRadius: BorderRadius.circular(20.0),
|
|
|
|
|
child: Image.network(
|
|
|
|
|
patientProfileAppBarModel.patient!.nationalityFlagURL!,
|
|
|
|
|
localPatient!.nationalityFlagURL!,
|
|
|
|
|
height: 25,
|
|
|
|
|
width: 30,
|
|
|
|
|
errorBuilder: (BuildContext context, Object exception, StackTrace? stackTrace) {
|
|
|
|
|
errorBuilder: (BuildContext context,
|
|
|
|
|
Object exception,
|
|
|
|
|
StackTrace? stackTrace) {
|
|
|
|
|
return Text('No Image');
|
|
|
|
|
},
|
|
|
|
|
))
|
|
|
|
|
@ -225,49 +282,48 @@ class PatientProfileAppBar extends StatelessWidget with PreferredSizeWidget {
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
HeaderRow(
|
|
|
|
|
label: TranslationBase.of(context).age + " : ",
|
|
|
|
|
label: TranslationBase.of(context).age! + " : ",
|
|
|
|
|
value:
|
|
|
|
|
"${AppDateUtils.getAgeByBirthday(patient.patientDetails != null ? patient.patientDetails.dateofBirth ?? "" : patient.dateofBirth ?? "", context, isServerFormat: !isFromLiveCare)}",
|
|
|
|
|
),if (patientProfileAppBarModel.patient!.appointmentDate != null &&
|
|
|
|
|
patientProfileAppBarModel.patient!.appointmentDate!.isNotEmpty &&
|
|
|
|
|
!isFromLabResult)
|
|
|
|
|
"${AppDateUtils.getAgeByBirthday(localPatient!.patientDetails != null ? localPatient!.patientDetails!.dateofBirth ?? "" : localPatient!.dateofBirth ?? "", context, isServerFormat: !isFromLiveCare)}",
|
|
|
|
|
),
|
|
|
|
|
if (localPatient!.appointmentDate != null &&
|
|
|
|
|
localPatient!.appointmentDate!.isNotEmpty &&
|
|
|
|
|
!isFromLabResult!)
|
|
|
|
|
HeaderRow(
|
|
|
|
|
label:
|
|
|
|
|
TranslationBase.of(context).appointmentDate! + " : ",
|
|
|
|
|
value:
|
|
|
|
|
AppDateUtils.getDayMonthYearDateFormatted(
|
|
|
|
|
AppDateUtils.convertStringToDate(patientProfileAppBarModel.patient!.appointmentDate!)),
|
|
|
|
|
label: TranslationBase.of(context).appointmentDate! +
|
|
|
|
|
" : ",
|
|
|
|
|
value: AppDateUtils.getDayMonthYearDateFormatted(
|
|
|
|
|
AppDateUtils.convertStringToDate(
|
|
|
|
|
localPatient!.appointmentDate!)),
|
|
|
|
|
),
|
|
|
|
|
if (patientProfileAppBarModel.isFromLabResult!)
|
|
|
|
|
|
|
|
|
|
HeaderRow(
|
|
|
|
|
label: "Result Date: ",
|
|
|
|
|
value:
|
|
|
|
|
'${AppDateUtils.getDayMonthYearDateFormatted(patientProfileAppBarModel.appointmentDate!, isArabic: projectViewModel.isArabic)}',
|
|
|
|
|
|
|
|
|
|
if (patientProfileAppBarModel!.isFromLabResult!)
|
|
|
|
|
HeaderRow(
|
|
|
|
|
label: "Result Date: ",
|
|
|
|
|
value:
|
|
|
|
|
'${AppDateUtils.getDayMonthYearDateFormatted(patientProfileAppBarModel!.appointmentDate!, isArabic: projectViewModel.isArabic)}',
|
|
|
|
|
),
|
|
|
|
|
// if(isInpatient)
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
if (patient.admissionDate != null &&
|
|
|
|
|
patient.admissionDate.isNotEmpty)
|
|
|
|
|
if (localPatient!.admissionDate != null &&
|
|
|
|
|
localPatient!.admissionDate!.isNotEmpty)
|
|
|
|
|
HeaderRow(
|
|
|
|
|
label: patient.admissionDate == null
|
|
|
|
|
label: localPatient!.admissionDate == null
|
|
|
|
|
? ""
|
|
|
|
|
: TranslationBase.of(context).admissionDate +
|
|
|
|
|
: TranslationBase.of(context).admissionDate! +
|
|
|
|
|
" : ",
|
|
|
|
|
value: patient.admissionDate == null
|
|
|
|
|
value: localPatient!.admissionDate == null
|
|
|
|
|
? ""
|
|
|
|
|
: "${AppDateUtils.getDayMonthYearDateFormatted((AppDateUtils.getDateTimeFromServerFormat(patient.admissionDate.toString())))}",
|
|
|
|
|
: "${AppDateUtils.getDayMonthYearDateFormatted((AppDateUtils.getDateTimeFromServerFormat(localPatient!.admissionDate.toString())))}",
|
|
|
|
|
),
|
|
|
|
|
if (patient.admissionDate != null)
|
|
|
|
|
if (localPatient!.admissionDate != null)
|
|
|
|
|
HeaderRow(
|
|
|
|
|
label: "${TranslationBase.of(context).numOfDays}: ",
|
|
|
|
|
value: isDischargedPatient &&
|
|
|
|
|
patient.dischargeDate != null
|
|
|
|
|
? "${AppDateUtils.getDateTimeFromServerFormat(patient.dischargeDate).difference(AppDateUtils.getDateTimeFromServerFormat(patient.admissionDate)).inDays + 1}"
|
|
|
|
|
: "${DateTime.now().difference(AppDateUtils.getDateTimeFromServerFormat(patient.admissionDate)).inDays + 1}",
|
|
|
|
|
localPatient!.dischargeDate != null
|
|
|
|
|
? "${AppDateUtils.getDateTimeFromServerFormat(localPatient!.dischargeDate!).difference(AppDateUtils.getDateTimeFromServerFormat(localPatient!.admissionDate!)).inDays + 1}"
|
|
|
|
|
: "${DateTime.now().difference(AppDateUtils.getDateTimeFromServerFormat(localPatient!.admissionDate!)).inDays + 1}",
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
@ -275,7 +331,7 @@ class PatientProfileAppBar extends StatelessWidget with PreferredSizeWidget {
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
]),
|
|
|
|
|
if (patientProfileAppBarModel.isAppointmentHeader!)
|
|
|
|
|
if (patientProfileAppBarModel!.isAppointmentHeader!)
|
|
|
|
|
Row(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
@ -283,12 +339,16 @@ class PatientProfileAppBar extends StatelessWidget with PreferredSizeWidget {
|
|
|
|
|
width: 30,
|
|
|
|
|
height: 30,
|
|
|
|
|
margin: EdgeInsets.only(
|
|
|
|
|
left: projectViewModel.isArabic ? 10 : 85, right: projectViewModel.isArabic ? 85 : 10, top: 5),
|
|
|
|
|
left: projectViewModel.isArabic ? 10 : 85,
|
|
|
|
|
right: projectViewModel.isArabic ? 85 : 10,
|
|
|
|
|
top: 5),
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
shape: BoxShape.rectangle,
|
|
|
|
|
border: Border(
|
|
|
|
|
bottom: BorderSide(color: Colors.grey[400]!, width: 2.5),
|
|
|
|
|
left: BorderSide(color: Colors.grey[400]!, width: 2.5),
|
|
|
|
|
bottom:
|
|
|
|
|
BorderSide(color: Colors.grey[400]!, width: 2.5),
|
|
|
|
|
left:
|
|
|
|
|
BorderSide(color: Colors.grey[400]!, width: 2.5),
|
|
|
|
|
)),
|
|
|
|
|
),
|
|
|
|
|
Expanded(
|
|
|
|
|
@ -299,8 +359,8 @@ class PatientProfileAppBar extends StatelessWidget with PreferredSizeWidget {
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
Container(
|
|
|
|
|
child: LargeAvatar(
|
|
|
|
|
name: patientProfileAppBarModel.doctorName ?? "",
|
|
|
|
|
url: patientProfileAppBarModel.profileUrl,
|
|
|
|
|
name: patientProfileAppBarModel!.doctorName ?? "",
|
|
|
|
|
url: patientProfileAppBarModel!.profileUrl,
|
|
|
|
|
),
|
|
|
|
|
width: 25,
|
|
|
|
|
height: 25,
|
|
|
|
|
@ -322,14 +382,14 @@ class PatientProfileAppBar extends StatelessWidget with PreferredSizeWidget {
|
|
|
|
|
3.5,
|
|
|
|
|
isCopyable: true,
|
|
|
|
|
),
|
|
|
|
|
if (orderNo != null && !isPrescriptions)
|
|
|
|
|
if (orderNo != null && !isPrescriptions!)
|
|
|
|
|
HeaderRow(
|
|
|
|
|
label: 'Order No: ',
|
|
|
|
|
value: orderNo ?? '',
|
|
|
|
|
),
|
|
|
|
|
if (invoiceNO != null && !isPrescriptions)
|
|
|
|
|
if (invoiceNO != null && !isPrescriptions!)
|
|
|
|
|
HeaderRow(
|
|
|
|
|
label: 'Invoice: ',
|
|
|
|
|
label: 'Invoice: ',
|
|
|
|
|
value: invoiceNO ?? "",
|
|
|
|
|
),
|
|
|
|
|
if (branch != null)
|
|
|
|
|
@ -342,25 +402,25 @@ class PatientProfileAppBar extends StatelessWidget with PreferredSizeWidget {
|
|
|
|
|
label: 'Clinic: ',
|
|
|
|
|
value: clinic ?? '',
|
|
|
|
|
),
|
|
|
|
|
if (isMedicalFile && episode != null)
|
|
|
|
|
if (isMedicalFile! && episode != null)
|
|
|
|
|
HeaderRow(
|
|
|
|
|
label: 'Episode: ',
|
|
|
|
|
value: episode ?? '',
|
|
|
|
|
),
|
|
|
|
|
if (isMedicalFile && visitDate != null)
|
|
|
|
|
if (isMedicalFile! && visitDate != null)
|
|
|
|
|
HeaderRow(
|
|
|
|
|
label: 'Visit Date: ',
|
|
|
|
|
value: visitDate ?? '',
|
|
|
|
|
),
|
|
|
|
|
if (!isMedicalFile)
|
|
|
|
|
if (!isMedicalFile!)
|
|
|
|
|
HeaderRow(
|
|
|
|
|
label: !isPrescriptions
|
|
|
|
|
label: !isPrescriptions!
|
|
|
|
|
? 'Result Date:'
|
|
|
|
|
: 'Prescriptions Date ',
|
|
|
|
|
value:
|
|
|
|
|
'${AppDateUtils.getDayMonthYearDateFormatted(appointmentDate, isArabic: projectViewModel.isArabic)}',
|
|
|
|
|
),
|
|
|
|
|
]),
|
|
|
|
|
'${AppDateUtils.getDayMonthYearDateFormatted(appointmentDate!, isArabic: projectViewModel.isArabic)}',
|
|
|
|
|
),
|
|
|
|
|
]),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
@ -378,26 +438,26 @@ class PatientProfileAppBar extends StatelessWidget with PreferredSizeWidget {
|
|
|
|
|
@override
|
|
|
|
|
Size get preferredSize => Size(
|
|
|
|
|
double.maxFinite,
|
|
|
|
|
patientProfileAppBarModel.height == 0
|
|
|
|
|
? patientProfileAppBarModel.isAppointmentHeader!
|
|
|
|
|
patientProfileAppBarModel!.height == 0
|
|
|
|
|
? patientProfileAppBarModel!.isAppointmentHeader!
|
|
|
|
|
? 270
|
|
|
|
|
: ((patientProfileAppBarModel.patient!.appointmentDate!.isNotEmpty)
|
|
|
|
|
? patientProfileAppBarModel.isFromLabResult!
|
|
|
|
|
: ((localPatient!.appointmentDate!.isNotEmpty)
|
|
|
|
|
? patientProfileAppBarModel!.isFromLabResult!
|
|
|
|
|
? 190
|
|
|
|
|
: 170
|
|
|
|
|
: patientProfileAppBarModel.patient!.admissionDate != null
|
|
|
|
|
? patientProfileAppBarModel.isFromLabResult!
|
|
|
|
|
: localPatient!.admissionDate != null
|
|
|
|
|
? patientProfileAppBarModel!.isFromLabResult!
|
|
|
|
|
? 190
|
|
|
|
|
: 170
|
|
|
|
|
: patientProfileAppBarModel.isDischargedPatient!
|
|
|
|
|
: patientProfileAppBarModel!.isDischargedPatient!
|
|
|
|
|
? 240
|
|
|
|
|
: 130)
|
|
|
|
|
: patientProfileAppBarModel.height!);
|
|
|
|
|
: patientProfileAppBarModel!.height!);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class HeaderRow extends StatelessWidget {
|
|
|
|
|
final String label;
|
|
|
|
|
final String value;
|
|
|
|
|
final String? label;
|
|
|
|
|
final String? value;
|
|
|
|
|
|
|
|
|
|
const HeaderRow({Key? key, this.label, this.value}) : super(key: key);
|
|
|
|
|
|
|
|
|
|
|