|
|
|
|
@ -179,7 +179,13 @@ class AppointmentCard extends StatelessWidget {
|
|
|
|
|
? '${patientAppointmentHistoryResponseModel.clinicName!.substring(0, 12)}...'
|
|
|
|
|
: patientAppointmentHistoryResponseModel.clinicName!),
|
|
|
|
|
).toShimmer2(isShow: isLoading),
|
|
|
|
|
AppCustomChipWidget(labelText: isLoading ? 'Olaya' : patientAppointmentHistoryResponseModel.projectName!).toShimmer2(isShow: isLoading),
|
|
|
|
|
AppCustomChipWidget(
|
|
|
|
|
labelText: isLoading
|
|
|
|
|
? 'Olaya'
|
|
|
|
|
: patientAppointmentHistoryResponseModel.projectName!.length > 15
|
|
|
|
|
? '${patientAppointmentHistoryResponseModel.projectName!.substring(0, 12)}...'
|
|
|
|
|
: patientAppointmentHistoryResponseModel.projectName!)
|
|
|
|
|
.toShimmer2(isShow: isLoading),
|
|
|
|
|
AppCustomChipWidget(
|
|
|
|
|
labelPadding: EdgeInsetsDirectional.only(start: -4.w, end: 6.w),
|
|
|
|
|
icon: AppAssets.appointment_calendar_icon,
|
|
|
|
|
|