haroon_dev
haroon amjad 2 days ago
parent cf27430e29
commit 5e16169867

@ -70,7 +70,7 @@ class AppointmentDoctorCard extends StatelessWidget {
children: [
Utils.buildSvgWithAssets(icon: AppAssets.rating_icon, width: 15.w, height: 15.h),
SizedBox(height: 2.h),
"${patientAppointmentHistoryResponseModel.decimalDoctorRate}".toText11(isBold: true, color: AppColors.textColor),
"${patientAppointmentHistoryResponseModel.decimalDoctorRate ?? 0.0}".toText11(isBold: true, color: AppColors.textColor),
],
),
).circle(100),

@ -66,9 +66,7 @@ class PrescriptionDeliveryOrderSummaryPage extends StatelessWidget {
Expanded(
child: Padding(
padding: EdgeInsets.all(8.h),
child: Center(
child: prescriptionsViewModel.prescriptionDetailsList[index].itemDescription!.trim().toText12(),
),
child: prescriptionsViewModel.prescriptionDetailsList[index].itemDescription!.trim().toText14(weight: FontWeight.w500),
),
),
],

Loading…
Cancel
Save