From 62fcb9f1e0a4fd4a4b95416a19cd19fef05b3af0 Mon Sep 17 00:00:00 2001 From: Aamir Muhammad Date: Tue, 12 Aug 2025 16:54:28 +0300 Subject: [PATCH] fixes --- lib/new_ui/otp/otp_validation_bootmsheet_widget.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/new_ui/otp/otp_validation_bootmsheet_widget.dart b/lib/new_ui/otp/otp_validation_bootmsheet_widget.dart index 2b209fa4..11ab1260 100644 --- a/lib/new_ui/otp/otp_validation_bootmsheet_widget.dart +++ b/lib/new_ui/otp/otp_validation_bootmsheet_widget.dart @@ -207,8 +207,9 @@ class CustomButton extends StatelessWidget { child: Container( height: 56, decoration: RoundedRectangleBorder().toSmoothCornerDecoration( - color: isDisabled ? backgroundColor.withOpacity(0.5) : backgroundColor, + color: isDisabled ? Colors.transparent : backgroundColor, borderRadius: borderRadius, + side: BorderSide(width: borderWidth, color: isDisabled? borderColor.withOpacity(0.5) : borderColor,) ), child: Padding( padding: padding,