|
|
|
|
@ -6,6 +6,7 @@ import 'package:doctor_app_flutter/screens/patients/profile/soap_update/subjecti
|
|
|
|
|
import 'package:doctor_app_flutter/screens/patients/profile/soap_update_vida_plus/subjective/chief_complaint/AddChiefComplaints.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/screens/patients/profile/soap_update_vida_plus/subjective/chief_complaint/widgets/add_soap_item.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/screens/patients/profile/soap_update_vida_plus/subjective/chief_complaint/widgets/complaint_items.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/screens/patients/profile/soap_update_vida_plus/subjective/chief_complaint/widgets/empty_complaints.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/utils/translations_delegate_base_utils.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/loader/gif_loader_dialog_utils.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/text_fields/app-textfield-custom.dart';
|
|
|
|
|
@ -50,24 +51,27 @@ class UpdateChiefComplaints extends StatelessWidget {
|
|
|
|
|
title: TranslationBase.of(context).addChiefComplaint,
|
|
|
|
|
),
|
|
|
|
|
SizedBox(height: 16),
|
|
|
|
|
Container(width: MediaQuery.of(context).size.width,
|
|
|
|
|
height: 40,
|
|
|
|
|
child:
|
|
|
|
|
ListView.builder(
|
|
|
|
|
shrinkWrap: true,
|
|
|
|
|
scrollDirection: Axis.horizontal,
|
|
|
|
|
itemCount: model.getChiefComplaintListVidaPlus.length,
|
|
|
|
|
itemBuilder: (_, index) =>
|
|
|
|
|
ComplaintItems(
|
|
|
|
|
complaint: model.getChiefComplaintListVidaPlus[index]!,
|
|
|
|
|
onCrossClicked: (complaints) {
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
)),
|
|
|
|
|
|
|
|
|
|
]),
|
|
|
|
|
));
|
|
|
|
|
if (model.getChiefComplaintListVidaPlus.isEmpty) ...{
|
|
|
|
|
SizedBox(
|
|
|
|
|
width: MediaQuery.sizeOf(context).width,
|
|
|
|
|
child: EmptyComplaints(),
|
|
|
|
|
)
|
|
|
|
|
} else ...{
|
|
|
|
|
Container(
|
|
|
|
|
width: MediaQuery.of(context).size.width,
|
|
|
|
|
height: 40,
|
|
|
|
|
child: ListView.builder(
|
|
|
|
|
shrinkWrap: true,
|
|
|
|
|
scrollDirection: Axis.horizontal,
|
|
|
|
|
itemCount:
|
|
|
|
|
model.getChiefComplaintListVidaPlus.length,
|
|
|
|
|
itemBuilder: (_, index) => ComplaintItems(
|
|
|
|
|
complaint: model
|
|
|
|
|
.getChiefComplaintListVidaPlus[index]!,
|
|
|
|
|
onCrossClicked: (complaints) {}))),
|
|
|
|
|
}
|
|
|
|
|
]),
|
|
|
|
|
));
|
|
|
|
|
}
|
|
|
|
|
getChiefComplaints(SOAPViewModel model){
|
|
|
|
|
model.getChiefComplaint(patientInfo);
|
|
|
|
|
|