diff --git a/lib/modules/cm_module/views/components/action_button/footer_action_button.dart b/lib/modules/cm_module/views/components/action_button/footer_action_button.dart index c9a833e5..9122639e 100644 --- a/lib/modules/cm_module/views/components/action_button/footer_action_button.dart +++ b/lib/modules/cm_module/views/components/action_button/footer_action_button.dart @@ -254,7 +254,7 @@ class FooterActionButton { child: AppFilledButton( label: context.translation.assetRetiredPendingOpManagementApproval, buttonColor: AppColor.background(context), - textColor: context.isDark ? Colors.white : AppColor.neutral150, + textColor: context.isDark ? Colors.white : AppColor.neutral50, fontSize: 12.toScreenWidth, )); case WorkOrderNextStepEnum.waitingForRequesterToConfirm: @@ -267,7 +267,7 @@ class FooterActionButton { AppFilledButton( label: 'Waiting for requester to verify', buttonColor: AppColor.background(context), - textColor: context.isDark ? Colors.white : AppColor.neutral150, + textColor: context.isDark ? Colors.white : AppColor.neutral50, // buttonColor: AppColor.neutral140, // textColor: AppColor.neutral150, fontSize: 12.toScreenWidth, diff --git a/lib/modules/pm_module/ppm_wo/update_ppm/update_ppm.dart b/lib/modules/pm_module/ppm_wo/update_ppm/update_ppm.dart index c4b3b0cc..6ce5b9d6 100644 --- a/lib/modules/pm_module/ppm_wo/update_ppm/update_ppm.dart +++ b/lib/modules/pm_module/ppm_wo/update_ppm/update_ppm.dart @@ -228,7 +228,7 @@ class _UpdatePpmState extends State with TickerProviderStateMixin { // buttonColor: AppColor.white60, // textColor: AppColor.neutral50, buttonColor: context.isDark ? AppColor.neutral50 : AppColor.white60, - textColor: context.isDark ? Colors.white : AppColor.neutral150, + textColor: context.isDark ? Colors.white : AppColor.neutral50, onPressed: () { _onSubmit(status: 0); }, diff --git a/lib/modules/pm_module/ppm_wo/update_ppm/wo_info_form.dart b/lib/modules/pm_module/ppm_wo/update_ppm/wo_info_form.dart index 75a7ed6b..73be9501 100644 --- a/lib/modules/pm_module/ppm_wo/update_ppm/wo_info_form.dart +++ b/lib/modules/pm_module/ppm_wo/update_ppm/wo_info_form.dart @@ -52,7 +52,7 @@ class _WoInfoFormState extends State { PpmProvider ppmProvider = Provider.of(context, listen: false); if (widget.planPreventiveVisit.preventiveVisitAttachments != null && widget.planPreventiveVisit.preventiveVisitAttachments!.isNotEmpty) { ppmProvider.ppmPlanAttachments = []; - ppmProvider.ppmPlanAttachments.addAll(widget.planPreventiveVisit.preventiveVisitAttachments!.map((e) => GenericAttachmentModel(id:e.id,name:e.attachmentName!)).toList()); + ppmProvider.ppmPlanAttachments.addAll(widget.planPreventiveVisit.preventiveVisitAttachments!.map((e) => GenericAttachmentModel(id: e.id, name: e.attachmentName!)).toList()); } });