|
|
|
|
@ -14,6 +14,7 @@ import 'package:doctor_app_flutter/util/dr_app_toast_msg.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/util/helpers.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/patients/profile/PatientProfileButton.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/patients/profile/patient-profile-app-bar.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/buttons/app_buttons_widget.dart';
|
|
|
|
|
@ -204,19 +205,20 @@ class _EndCallScreenState extends State<EndCallScreen> {
|
|
|
|
|
.scaffoldBackgroundColor,
|
|
|
|
|
isShowAppBar: true,
|
|
|
|
|
appBar: PatientProfileAppBar(
|
|
|
|
|
patient,
|
|
|
|
|
patientProfileAppBarModel :PatientProfileAppBarModel(patient: patient,isInpatient: isInpatient,
|
|
|
|
|
isDischargedPatient: isDischargedPatient,
|
|
|
|
|
height: (patient.patientStatusType != null &&
|
|
|
|
|
patient.patientStatusType == 43)
|
|
|
|
|
? 210
|
|
|
|
|
: isDischargedPatient
|
|
|
|
|
? 240
|
|
|
|
|
: 0,
|
|
|
|
|
),
|
|
|
|
|
onPressed: (){
|
|
|
|
|
Navigator.pop(context);
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
isInpatient: isInpatient,
|
|
|
|
|
height: (patient.patientStatusType != null &&
|
|
|
|
|
patient.patientStatusType == 43)
|
|
|
|
|
? 210
|
|
|
|
|
: isDischargedPatient
|
|
|
|
|
? 240
|
|
|
|
|
: 0,
|
|
|
|
|
isDischargedPatient: isDischargedPatient),
|
|
|
|
|
),
|
|
|
|
|
body: Container(
|
|
|
|
|
height: !isSearchAndOut
|
|
|
|
|
? isDischargedPatient
|
|
|
|
|
|