|
|
|
|
@ -54,7 +54,7 @@ class GeneralAppointmentWidget extends StatelessWidget {
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
showServices(
|
|
|
|
|
"${appointmentListModel.appointmentServicesList!.first.providerServiceDescription} - ${appointmentListModel.appointmentServicesList!.first.serviceId}",
|
|
|
|
|
"${appointmentListModel.appointmentServicesList!.first.providerServiceName} ${appointmentListModel.appointmentServicesList!.first.serviceId != 0 ? '- ${appointmentListModel.appointmentServicesList!.first.serviceId}' : ""}",
|
|
|
|
|
MyAssets.modificationsIcon,
|
|
|
|
|
),
|
|
|
|
|
if (isNeedToShowItems) ...itemsList,
|
|
|
|
|
@ -77,7 +77,9 @@ class GeneralAppointmentWidget extends StatelessWidget {
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
showServices(
|
|
|
|
|
"${appointmentListModel.appointmentServicesList![index].providerServiceDescription} - ${appointmentListModel.appointmentServicesList![index].serviceId}", MyAssets.modificationsIcon),
|
|
|
|
|
"${appointmentListModel.appointmentServicesList![index].providerServiceName} ${appointmentListModel.appointmentServicesList![index].serviceId != 0 ? '- ${appointmentListModel.appointmentServicesList![index].serviceId}' : ""}",
|
|
|
|
|
MyAssets.modificationsIcon,
|
|
|
|
|
),
|
|
|
|
|
if (isNeedToShowItems) ...itemsList,
|
|
|
|
|
],
|
|
|
|
|
).paddingOnly(bottom: 6);
|
|
|
|
|
|