|
|
|
@ -22,7 +22,11 @@ class ResultByFacility extends StatelessWidget {
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Column(
|
|
|
|
return Column(
|
|
|
|
children: [
|
|
|
|
children: [
|
|
|
|
InkWell(
|
|
|
|
Visibility(
|
|
|
|
|
|
|
|
visible: patientDoctorAppointmentListHospital
|
|
|
|
|
|
|
|
.registeredDoctorMap?[selectedRegion]?.hmgSize !=
|
|
|
|
|
|
|
|
0,
|
|
|
|
|
|
|
|
child: InkWell(
|
|
|
|
onTap: () {
|
|
|
|
onTap: () {
|
|
|
|
if (patientDoctorAppointmentListHospital
|
|
|
|
if (patientDoctorAppointmentListHospital
|
|
|
|
.registeredDoctorMap?[selectedRegion]?.hmgSize ==
|
|
|
|
.registeredDoctorMap?[selectedRegion]?.hmgSize ==
|
|
|
|
@ -38,8 +42,13 @@ class ResultByFacility extends StatelessWidget {
|
|
|
|
nearest: patientDoctorAppointmentListHospital
|
|
|
|
nearest: patientDoctorAppointmentListHospital
|
|
|
|
.registeredDoctorMap?[selectedRegion]?.hmgDistance),
|
|
|
|
.registeredDoctorMap?[selectedRegion]?.hmgDistance),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
SizedBox(height: 16,),
|
|
|
|
SizedBox(height: 16,),
|
|
|
|
InkWell(
|
|
|
|
Visibility(
|
|
|
|
|
|
|
|
visible: patientDoctorAppointmentListHospital
|
|
|
|
|
|
|
|
.registeredDoctorMap?[selectedRegion]?.hmcSize !=
|
|
|
|
|
|
|
|
0,
|
|
|
|
|
|
|
|
child: InkWell(
|
|
|
|
onTap: () {
|
|
|
|
onTap: () {
|
|
|
|
if (patientDoctorAppointmentListHospital
|
|
|
|
if (patientDoctorAppointmentListHospital
|
|
|
|
.registeredDoctorMap?[selectedRegion]?.hmcSize ==
|
|
|
|
.registeredDoctorMap?[selectedRegion]?.hmcSize ==
|
|
|
|
@ -54,6 +63,7 @@ class ResultByFacility extends StatelessWidget {
|
|
|
|
"${patientDoctorAppointmentListHospital.registeredDoctorMap?[selectedRegion]?.hmcSize ?? 0}",
|
|
|
|
"${patientDoctorAppointmentListHospital.registeredDoctorMap?[selectedRegion]?.hmcSize ?? 0}",
|
|
|
|
nearest: patientDoctorAppointmentListHospital
|
|
|
|
nearest: patientDoctorAppointmentListHospital
|
|
|
|
.registeredDoctorMap?[selectedRegion]?.hmcDistance),
|
|
|
|
.registeredDoctorMap?[selectedRegion]?.hmcDistance),
|
|
|
|
|
|
|
|
),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
]);
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|