|
|
|
|
@ -12,8 +12,7 @@ import 'package:url_launcher/url_launcher.dart';
|
|
|
|
|
|
|
|
|
|
import 'large_avatar.dart';
|
|
|
|
|
|
|
|
|
|
class PatientProfileAppBar extends StatelessWidget
|
|
|
|
|
with PreferredSizeWidget {
|
|
|
|
|
class PatientProfileAppBar extends StatelessWidget with PreferredSizeWidget {
|
|
|
|
|
final PatiantInformtion patient;
|
|
|
|
|
final double height;
|
|
|
|
|
final bool isInpatient;
|
|
|
|
|
@ -35,8 +34,7 @@ class PatientProfileAppBar extends StatelessWidget
|
|
|
|
|
final bool isFromLabResult;
|
|
|
|
|
final VoidCallback onPressed;
|
|
|
|
|
|
|
|
|
|
PatientProfileAppBar(
|
|
|
|
|
this.patient,
|
|
|
|
|
PatientProfileAppBar(this.patient,
|
|
|
|
|
{this.height = 0.0,
|
|
|
|
|
this.isInpatient = false,
|
|
|
|
|
this.isDischargedPatient = false,
|
|
|
|
|
@ -53,8 +51,8 @@ class PatientProfileAppBar extends StatelessWidget
|
|
|
|
|
this.episode,
|
|
|
|
|
this.visitDate,
|
|
|
|
|
this.isAppointmentHeader = false,
|
|
|
|
|
this.isFromLabResult = false, this.onPressed});
|
|
|
|
|
|
|
|
|
|
this.isFromLabResult = false,
|
|
|
|
|
this.onPressed});
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
@ -74,35 +72,33 @@ class PatientProfileAppBar extends StatelessWidget
|
|
|
|
|
bottom: 5,
|
|
|
|
|
),
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
border: Border( bottom: BorderSide(color:Color(0xFFEFEFEF)))
|
|
|
|
|
|
|
|
|
|
),
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
border: Border(bottom: BorderSide(color: Color(0xFFEFEFEF)))),
|
|
|
|
|
child: Container(
|
|
|
|
|
padding: EdgeInsets.only(left: 10, right: 10, bottom: 10),
|
|
|
|
|
|
|
|
|
|
margin: EdgeInsets.only(top: SizeConfig.isHeightVeryShort?30: 50),
|
|
|
|
|
margin: EdgeInsets.only(top: SizeConfig.isHeightVeryShort ? 30 : 50),
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
Container(
|
|
|
|
|
padding: EdgeInsets.only(left: SizeConfig.isHeightVeryShort?0: 12.0),
|
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
|
left: SizeConfig.isHeightVeryShort ? 0 : 12.0),
|
|
|
|
|
child: Row(children: [
|
|
|
|
|
IconButton(
|
|
|
|
|
icon: Icon(Icons.arrow_back_ios),
|
|
|
|
|
color: Color(0xFF2B353E), //Colors.black,
|
|
|
|
|
onPressed: () {
|
|
|
|
|
if(onPressed!=null)
|
|
|
|
|
onPressed();
|
|
|
|
|
Navigator.pop(context);
|
|
|
|
|
if (onPressed != null) onPressed();
|
|
|
|
|
Navigator.pop(context);
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: AppText(
|
|
|
|
|
patient.firstName != null
|
|
|
|
|
? (Helpers.capitalize(patient.firstName) +
|
|
|
|
|
" " +
|
|
|
|
|
Helpers.capitalize(patient.lastName))
|
|
|
|
|
: Helpers.capitalize(patient.fullName??patient.patientDetails.fullName),
|
|
|
|
|
" " +
|
|
|
|
|
Helpers.capitalize(patient.lastName))
|
|
|
|
|
: Helpers.capitalize(patient.fullName ??
|
|
|
|
|
patient.patientDetails.fullName),
|
|
|
|
|
fontSize: SizeConfig.textMultiplier * 1.8,
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
@ -111,13 +107,13 @@ class PatientProfileAppBar extends StatelessWidget
|
|
|
|
|
),
|
|
|
|
|
gender == 1
|
|
|
|
|
? Icon(
|
|
|
|
|
DoctorApp.male_2,
|
|
|
|
|
color: Colors.blue,
|
|
|
|
|
)
|
|
|
|
|
DoctorApp.male_2,
|
|
|
|
|
color: Colors.blue,
|
|
|
|
|
)
|
|
|
|
|
: Icon(
|
|
|
|
|
DoctorApp.female_1,
|
|
|
|
|
color: Colors.pink,
|
|
|
|
|
),
|
|
|
|
|
DoctorApp.female_1,
|
|
|
|
|
color: Colors.pink,
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
margin: EdgeInsets.symmetric(horizontal: 4),
|
|
|
|
|
child: InkWell(
|
|
|
|
|
@ -134,10 +130,11 @@ class PatientProfileAppBar extends StatelessWidget
|
|
|
|
|
),
|
|
|
|
|
Row(children: [
|
|
|
|
|
Padding(
|
|
|
|
|
padding: EdgeInsets.only(left: SizeConfig.isHeightVeryShort?0: 12.0),
|
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
|
left: SizeConfig.isHeightVeryShort ? 0 : 12.0),
|
|
|
|
|
child: Container(
|
|
|
|
|
width: SizeConfig.getTextMultiplierBasedOnWidth()*20,
|
|
|
|
|
height: SizeConfig.getTextMultiplierBasedOnWidth()*20,
|
|
|
|
|
width: SizeConfig.getTextMultiplierBasedOnWidth() * 20,
|
|
|
|
|
height: SizeConfig.getTextMultiplierBasedOnWidth() * 20,
|
|
|
|
|
child: Image.asset(
|
|
|
|
|
gender == 1
|
|
|
|
|
? 'assets/images/male_avatar.png'
|
|
|
|
|
@ -155,25 +152,27 @@ class PatientProfileAppBar extends StatelessWidget
|
|
|
|
|
children: [
|
|
|
|
|
patient.patientStatusType != null
|
|
|
|
|
? Container(
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
|
children: [
|
|
|
|
|
patient.patientStatusType == 43
|
|
|
|
|
? AppText(
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.arrivedP,
|
|
|
|
|
color: Colors.green,
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3.5,
|
|
|
|
|
)
|
|
|
|
|
child: Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
|
children: [
|
|
|
|
|
patient.patientStatusType == 43
|
|
|
|
|
? AppText(
|
|
|
|
|
TranslationBase.of(context).arrivedP,
|
|
|
|
|
color: Colors.green,
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
fontSize: SizeConfig
|
|
|
|
|
.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3.5,
|
|
|
|
|
)
|
|
|
|
|
: AppText(
|
|
|
|
|
TranslationBase.of(context).notArrived,
|
|
|
|
|
color: Colors.red[800],
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3.5,
|
|
|
|
|
fontSize: SizeConfig
|
|
|
|
|
.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3.5,
|
|
|
|
|
),
|
|
|
|
|
patient.startTime != null
|
|
|
|
|
? AppText(
|
|
|
|
|
@ -181,7 +180,9 @@ class PatientProfileAppBar extends StatelessWidget
|
|
|
|
|
? patient.startTime
|
|
|
|
|
: '',
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3.5,
|
|
|
|
|
fontSize: SizeConfig
|
|
|
|
|
.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3.5,
|
|
|
|
|
color: Color(0xFF2E303A))
|
|
|
|
|
: SizedBox()
|
|
|
|
|
],
|
|
|
|
|
@ -194,17 +195,21 @@ class PatientProfileAppBar extends StatelessWidget
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.fileNumber,
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3,
|
|
|
|
|
TranslationBase.of(context).fileNumber,
|
|
|
|
|
fontSize:
|
|
|
|
|
SizeConfig.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3,
|
|
|
|
|
color: Color(0xFF575757),
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(width: 1,),
|
|
|
|
|
SizedBox(
|
|
|
|
|
width: 1,
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
patient.patientId.toString(),
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3.5,
|
|
|
|
|
fontSize:
|
|
|
|
|
SizeConfig.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3.5,
|
|
|
|
|
color: Color(0xFF2E303A),
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
isCopyable: true,
|
|
|
|
|
@ -214,188 +219,87 @@ class PatientProfileAppBar extends StatelessWidget
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
patient.nationalityName ?? patient.nationality?? patient.nationalityId ?? '',
|
|
|
|
|
patient.nationalityName ??
|
|
|
|
|
patient.nationality ??
|
|
|
|
|
patient.nationalityId ??
|
|
|
|
|
'',
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3.5,
|
|
|
|
|
fontSize:
|
|
|
|
|
SizeConfig.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3.5,
|
|
|
|
|
),
|
|
|
|
|
patient.nationalityFlagURL != null
|
|
|
|
|
? ClipRRect(
|
|
|
|
|
borderRadius: BorderRadius.circular(20.0),
|
|
|
|
|
child: Image.network(
|
|
|
|
|
patient.nationalityFlagURL,
|
|
|
|
|
height: 25,
|
|
|
|
|
width: 30,
|
|
|
|
|
errorBuilder: (BuildContext context,
|
|
|
|
|
Object exception,
|
|
|
|
|
StackTrace stackTrace) {
|
|
|
|
|
return Text('No Image');
|
|
|
|
|
},
|
|
|
|
|
))
|
|
|
|
|
borderRadius: BorderRadius.circular(20.0),
|
|
|
|
|
child: Image.network(
|
|
|
|
|
patient.nationalityFlagURL,
|
|
|
|
|
height: 25,
|
|
|
|
|
width: 30,
|
|
|
|
|
errorBuilder: (BuildContext context,
|
|
|
|
|
Object exception,
|
|
|
|
|
StackTrace stackTrace) {
|
|
|
|
|
return Text('No Image');
|
|
|
|
|
},
|
|
|
|
|
))
|
|
|
|
|
: SizedBox()
|
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
child: RichText(
|
|
|
|
|
text: new TextSpan(
|
|
|
|
|
style: new TextStyle(
|
|
|
|
|
fontSize: 1.6 * SizeConfig.textMultiplier,
|
|
|
|
|
color: Colors.black,
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
),
|
|
|
|
|
children: <TextSpan>[
|
|
|
|
|
new TextSpan(
|
|
|
|
|
text: TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.age + " : ",
|
|
|
|
|
style: TextStyle(fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3, fontWeight: FontWeight.w600,color: Color(0xFF575757),)),
|
|
|
|
|
new TextSpan(
|
|
|
|
|
text:
|
|
|
|
|
"${AppDateUtils.getAgeByBirthday(
|
|
|
|
|
patient.patientDetails != null
|
|
|
|
|
? patient.patientDetails.dateofBirth ??
|
|
|
|
|
""
|
|
|
|
|
: patient.dateofBirth ?? "", context,
|
|
|
|
|
isServerFormat: !isFromLiveCare)}",
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3.5,
|
|
|
|
|
color: Color(0xFF2E303A),)),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
HeaderRow(
|
|
|
|
|
label: TranslationBase.of(context).age + " : ",
|
|
|
|
|
value:
|
|
|
|
|
"${AppDateUtils.getAgeByBirthday(patient.patientDetails != null ? patient.patientDetails.dateofBirth ?? "" : patient.dateofBirth ?? "", context, isServerFormat: !isFromLiveCare)}",
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
if ( patient.appointmentDate != null && patient.appointmentDate.isNotEmpty && !isFromLabResult)
|
|
|
|
|
Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context).appointmentDate +
|
|
|
|
|
" : ",
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3,
|
|
|
|
|
color: Color(0xFF575757),
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
width: 3.5,
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
AppDateUtils
|
|
|
|
|
.getDayMonthYearDateFormatted(
|
|
|
|
|
AppDateUtils.convertStringToDate(
|
|
|
|
|
patient.appointmentDate))
|
|
|
|
|
,
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3.5,
|
|
|
|
|
color: Color(0xFF2E303A),
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 0.5,
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
if (patient.appointmentDate != null &&
|
|
|
|
|
patient.appointmentDate.isNotEmpty &&
|
|
|
|
|
!isFromLabResult)
|
|
|
|
|
HeaderRow(
|
|
|
|
|
label:
|
|
|
|
|
TranslationBase.of(context).appointmentDate + " : ",
|
|
|
|
|
value: AppDateUtils.getDayMonthYearDateFormatted(
|
|
|
|
|
AppDateUtils.convertStringToDate(
|
|
|
|
|
patient.appointmentDate)),
|
|
|
|
|
),
|
|
|
|
|
if(isFromLabResult)Container(
|
|
|
|
|
child: RichText(
|
|
|
|
|
text: new TextSpan(
|
|
|
|
|
style: new TextStyle(
|
|
|
|
|
fontSize: 1.6 * SizeConfig.textMultiplier,
|
|
|
|
|
color: Colors.black,
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
),
|
|
|
|
|
children: <TextSpan>[
|
|
|
|
|
new TextSpan(
|
|
|
|
|
text: "Result Date: ",
|
|
|
|
|
style: TextStyle( fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3,
|
|
|
|
|
color: Color(0xFF575757),
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
fontFamily: 'Poppins',)),
|
|
|
|
|
new TextSpan(
|
|
|
|
|
text:
|
|
|
|
|
'${AppDateUtils.getDayMonthYearDateFormatted(appointmentDate, isArabic: projectViewModel.isArabic)}',
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
fontWeight: FontWeight.w700, fontSize: 12)),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
if (isFromLabResult)
|
|
|
|
|
HeaderRow(
|
|
|
|
|
label: "Result Date: ",
|
|
|
|
|
value:
|
|
|
|
|
'${AppDateUtils.getDayMonthYearDateFormatted(appointmentDate, isArabic: projectViewModel.isArabic)}',
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
// if(isInpatient)
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
if(patient.admissionDate != null && patient.admissionDate.isNotEmpty)
|
|
|
|
|
Container(
|
|
|
|
|
child: RichText(
|
|
|
|
|
text: new TextSpan(
|
|
|
|
|
style: new TextStyle(
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3, fontWeight: FontWeight.w600,color: Color(0xFF575757),
|
|
|
|
|
fontFamily: 'Poppins',
|
|
|
|
|
),
|
|
|
|
|
children: <TextSpan>[
|
|
|
|
|
new TextSpan(
|
|
|
|
|
text: patient.admissionDate == null
|
|
|
|
|
? ""
|
|
|
|
|
: TranslationBase.of(context)
|
|
|
|
|
.admissionDate +
|
|
|
|
|
" : ",
|
|
|
|
|
style: TextStyle(fontSize: 10)),
|
|
|
|
|
new TextSpan(
|
|
|
|
|
text: patient.admissionDate == null
|
|
|
|
|
? ""
|
|
|
|
|
: "${AppDateUtils
|
|
|
|
|
.getDayMonthYearDateFormatted(
|
|
|
|
|
(AppDateUtils
|
|
|
|
|
.getDateTimeFromServerFormat(
|
|
|
|
|
patient.admissionDate
|
|
|
|
|
.toString())))}",
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3.5,
|
|
|
|
|
color: Color(0xFF2E303A),)),
|
|
|
|
|
]))),
|
|
|
|
|
if (patient.admissionDate != null)
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
"${TranslationBase.of(context).numOfDays}: ",
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3, fontWeight: FontWeight.w600,color: Color(0xFF575757)
|
|
|
|
|
),
|
|
|
|
|
if(isDischargedPatient &&
|
|
|
|
|
patient.dischargeDate != null)
|
|
|
|
|
AppText(
|
|
|
|
|
"${AppDateUtils
|
|
|
|
|
.getDateTimeFromServerFormat(
|
|
|
|
|
patient.dischargeDate)
|
|
|
|
|
.difference(AppDateUtils
|
|
|
|
|
.getDateTimeFromServerFormat(
|
|
|
|
|
patient.admissionDate))
|
|
|
|
|
.inDays + 1}",
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3.5,
|
|
|
|
|
color: Color(0xFF2E303A),
|
|
|
|
|
)
|
|
|
|
|
else
|
|
|
|
|
AppText(
|
|
|
|
|
"${DateTime
|
|
|
|
|
.now()
|
|
|
|
|
.difference(AppDateUtils
|
|
|
|
|
.getDateTimeFromServerFormat(
|
|
|
|
|
patient.admissionDate))
|
|
|
|
|
.inDays + 1}",
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3.5,
|
|
|
|
|
color: Color(0xFF2E303A),),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
if (patient.admissionDate != null &&
|
|
|
|
|
patient.admissionDate.isNotEmpty)
|
|
|
|
|
HeaderRow(
|
|
|
|
|
label: patient.admissionDate == null
|
|
|
|
|
? ""
|
|
|
|
|
: TranslationBase.of(context).admissionDate +
|
|
|
|
|
" : ",
|
|
|
|
|
value: patient.admissionDate == null
|
|
|
|
|
? ""
|
|
|
|
|
: "${AppDateUtils.getDayMonthYearDateFormatted((AppDateUtils.getDateTimeFromServerFormat(patient.admissionDate.toString())))}",
|
|
|
|
|
),
|
|
|
|
|
if (patient.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}",
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
]),
|
|
|
|
|
if(isAppointmentHeader)
|
|
|
|
|
if (isAppointmentHeader)
|
|
|
|
|
Row(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
@ -409,10 +313,9 @@ class PatientProfileAppBar extends StatelessWidget
|
|
|
|
|
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(
|
|
|
|
|
@ -430,101 +333,123 @@ class PatientProfileAppBar extends StatelessWidget
|
|
|
|
|
height: 25,
|
|
|
|
|
margin: EdgeInsets.only(top: 10),
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Expanded(
|
|
|
|
|
flex: 5,
|
|
|
|
|
child: Container(
|
|
|
|
|
margin: EdgeInsets.all(10),
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment
|
|
|
|
|
.start,
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
AppText(
|
|
|
|
|
'${TranslationBase
|
|
|
|
|
.of(context)
|
|
|
|
|
.dr}$doctorName',
|
|
|
|
|
'${TranslationBase.of(context).dr}$doctorName',
|
|
|
|
|
color: Color(0xFF2E303A),
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3.5,
|
|
|
|
|
fontSize: SizeConfig
|
|
|
|
|
.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3.5,
|
|
|
|
|
),
|
|
|
|
|
if (orderNo != null &&
|
|
|
|
|
!isPrescriptions)
|
|
|
|
|
if (orderNo != null && !isPrescriptions)
|
|
|
|
|
Row(
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
AppText('Order No: ',
|
|
|
|
|
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3, fontWeight: FontWeight.w600,color: Color(0xFF575757),),
|
|
|
|
|
AppText(orderNo ?? '',
|
|
|
|
|
fontSize: 12)
|
|
|
|
|
AppText(
|
|
|
|
|
'Order No: ',
|
|
|
|
|
fontSize: SizeConfig
|
|
|
|
|
.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3,
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
color: Color(0xFF575757),
|
|
|
|
|
),
|
|
|
|
|
AppText(orderNo ?? '', fontSize: 12)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
if (invoiceNO != null &&
|
|
|
|
|
!isPrescriptions)
|
|
|
|
|
if (invoiceNO != null && !isPrescriptions)
|
|
|
|
|
Row(
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
AppText('Invoice: ',
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3, fontWeight: FontWeight.w600,color: Color(0xFF575757),),
|
|
|
|
|
AppText(invoiceNO ?? "",
|
|
|
|
|
fontSize: 12)
|
|
|
|
|
AppText(
|
|
|
|
|
'Invoice: ',
|
|
|
|
|
fontSize: SizeConfig
|
|
|
|
|
.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3,
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
color: Color(0xFF575757),
|
|
|
|
|
),
|
|
|
|
|
AppText(invoiceNO ?? "", fontSize: 12)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
if (branch != null)
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
AppText('Branch: ',
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3, fontWeight: FontWeight.w600,color: Color(0xFF575757),),
|
|
|
|
|
AppText(branch ?? '',
|
|
|
|
|
fontSize: 12)
|
|
|
|
|
AppText(
|
|
|
|
|
'Branch: ',
|
|
|
|
|
fontSize: SizeConfig
|
|
|
|
|
.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3,
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
color: Color(0xFF575757),
|
|
|
|
|
),
|
|
|
|
|
AppText(branch ?? '', fontSize: 12)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
if (clinic != null)
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
AppText('Clinic: ',
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3, fontWeight: FontWeight.w600,color: Color(0xFF575757),),
|
|
|
|
|
AppText(clinic ?? '',
|
|
|
|
|
fontSize: 12)
|
|
|
|
|
AppText(
|
|
|
|
|
'Clinic: ',
|
|
|
|
|
fontSize: SizeConfig
|
|
|
|
|
.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3,
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
color: Color(0xFF575757),
|
|
|
|
|
),
|
|
|
|
|
AppText(clinic ?? '', fontSize: 12)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
if (isMedicalFile &&
|
|
|
|
|
episode != null)
|
|
|
|
|
if (isMedicalFile && episode != null)
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
AppText('Episode: ',
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3, fontWeight: FontWeight.w600,color: Color(0xFF575757),),
|
|
|
|
|
AppText(episode ?? '',
|
|
|
|
|
fontSize: 12)
|
|
|
|
|
AppText(
|
|
|
|
|
'Episode: ',
|
|
|
|
|
fontSize: SizeConfig
|
|
|
|
|
.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3,
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
color: Color(0xFF575757),
|
|
|
|
|
),
|
|
|
|
|
AppText(episode ?? '', fontSize: 12)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
if (isMedicalFile &&
|
|
|
|
|
visitDate != null)
|
|
|
|
|
if (isMedicalFile && visitDate != null)
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
AppText('Visit Date: ',
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3, fontWeight: FontWeight.w600,color: Color(0xFF575757),),
|
|
|
|
|
AppText(visitDate ?? '',
|
|
|
|
|
fontSize: 12)
|
|
|
|
|
AppText(
|
|
|
|
|
'Visit Date: ',
|
|
|
|
|
fontSize: SizeConfig
|
|
|
|
|
.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3,
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
color: Color(0xFF575757),
|
|
|
|
|
),
|
|
|
|
|
AppText(visitDate ?? '', fontSize: 12)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
if (!isMedicalFile)
|
|
|
|
|
Row(
|
|
|
|
|
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
AppText(
|
|
|
|
|
!isPrescriptions
|
|
|
|
|
? 'Result Date:'
|
|
|
|
|
: 'Prescriptions Date ',
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3, fontWeight: FontWeight.w600,color: Color(0xFF575757),
|
|
|
|
|
fontSize: SizeConfig
|
|
|
|
|
.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3,
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
color: Color(0xFF575757),
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
'${AppDateUtils
|
|
|
|
|
.getDayMonthYearDateFormatted(
|
|
|
|
|
appointmentDate,
|
|
|
|
|
isArabic: projectViewModel
|
|
|
|
|
.isArabic)}',
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() *3.5,
|
|
|
|
|
'${AppDateUtils.getDayMonthYearDateFormatted(appointmentDate, isArabic: projectViewModel.isArabic)}',
|
|
|
|
|
fontSize: SizeConfig
|
|
|
|
|
.getTextMultiplierBasedOnWidth() *
|
|
|
|
|
3.5,
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
@ -542,9 +467,51 @@ class PatientProfileAppBar extends StatelessWidget
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Size get preferredSize =>
|
|
|
|
|
Size(double.maxFinite, height == 0
|
|
|
|
|
? isInpatient ? (isFromLabResult?200:190) : isAppointmentHeader ? 290 : SizeConfig.isHeightVeryShort?137:SizeConfig.isHeightShort?190: SizeConfig.heightMultiplier * (SizeConfig.isWidthLarge?25:20)
|
|
|
|
|
Size get preferredSize => Size(
|
|
|
|
|
double.maxFinite,
|
|
|
|
|
height == 0
|
|
|
|
|
? isInpatient
|
|
|
|
|
? (isFromLabResult ? 200 : 190)
|
|
|
|
|
: isAppointmentHeader
|
|
|
|
|
? 290
|
|
|
|
|
: SizeConfig.isHeightVeryShort
|
|
|
|
|
? 137
|
|
|
|
|
: SizeConfig.isHeightShort
|
|
|
|
|
? 190
|
|
|
|
|
: SizeConfig.heightMultiplier *
|
|
|
|
|
(SizeConfig.isWidthLarge ? 25 : 20)
|
|
|
|
|
: height);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class HeaderRow extends StatelessWidget {
|
|
|
|
|
final String label;
|
|
|
|
|
final String value;
|
|
|
|
|
|
|
|
|
|
const HeaderRow({Key key, this.label, this.value}) : super(key: key);
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
return Row(
|
|
|
|
|
children: [
|
|
|
|
|
AppText(
|
|
|
|
|
label,
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() * 3,
|
|
|
|
|
color: Color(0xFF575757),
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
width: 1,
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
value,
|
|
|
|
|
fontSize: SizeConfig.getTextMultiplierBasedOnWidth() * 3.5,
|
|
|
|
|
color: Color(0xFF2E303A),
|
|
|
|
|
fontWeight: FontWeight.w700,
|
|
|
|
|
isCopyable: true,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|