|
|
|
@ -104,14 +104,16 @@ class _InsuranceApprovalScreenNewState
|
|
|
|
);
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
child: DoctorCardInsurance(
|
|
|
|
child: DoctorCardInsurance(
|
|
|
|
patientOut: model
|
|
|
|
patientOut: model.insuranceApproval[index]
|
|
|
|
.insuranceApproval[index].patientDescription,
|
|
|
|
.patientDescription,
|
|
|
|
profileUrl:
|
|
|
|
profileUrl:
|
|
|
|
model.insuranceApproval[index].doctorImage,
|
|
|
|
model.insuranceApproval[index].doctorImage,
|
|
|
|
clinic: model.insuranceApproval[index].clinicName,
|
|
|
|
clinic:
|
|
|
|
|
|
|
|
model.insuranceApproval[index].clinicName,
|
|
|
|
doctorName:
|
|
|
|
doctorName:
|
|
|
|
model.insuranceApproval[index].doctorName,
|
|
|
|
model.insuranceApproval[index].doctorName,
|
|
|
|
branch: model.insuranceApproval[index].approvalNo
|
|
|
|
branch: model
|
|
|
|
|
|
|
|
.insuranceApproval[index].approvalNo
|
|
|
|
.toString(),
|
|
|
|
.toString(),
|
|
|
|
isPrescriptions: true,
|
|
|
|
isPrescriptions: true,
|
|
|
|
approvalStatus: model.insuranceApproval[index]
|
|
|
|
approvalStatus: model.insuranceApproval[index]
|
|
|
|
@ -125,16 +127,21 @@ class _InsuranceApprovalScreenNewState
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
)
|
|
|
|
)
|
|
|
|
: Column(
|
|
|
|
: Center(
|
|
|
|
|
|
|
|
child: Column(
|
|
|
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
children: [
|
|
|
|
Container(
|
|
|
|
SizedBox(
|
|
|
|
height: 200,
|
|
|
|
height: 100,
|
|
|
|
width: double.infinity,
|
|
|
|
|
|
|
|
child: Center(
|
|
|
|
|
|
|
|
child: Text("No Insurance Approvals Found")))
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
Image.asset('assets/images/no-data.png'),
|
|
|
|
|
|
|
|
Padding(
|
|
|
|
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
|
|
|
|
|
|
|
child: Texts('No Insurance Approval Found'),
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
)),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
);
|
|
|
|
|