From 9968abd58f5ff9b3fa72e8c55ecbff4a1b97c56b Mon Sep 17 00:00:00 2001 From: dab246 Date: Thu, 5 Oct 2023 16:05:25 +0700 Subject: [PATCH] TF-2188 Remove radius and background color bottom bar sending queue (cherry picked from commit 03d03dd02be6dc3e3e584de4bf6ad4a19f3a56b7) --- .../widgets/bottom_bar_sending_queue_widget.dart | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/features/sending_queue/presentation/widgets/bottom_bar_sending_queue_widget.dart b/lib/features/sending_queue/presentation/widgets/bottom_bar_sending_queue_widget.dart index 7dcdce8c3..997a067f2 100644 --- a/lib/features/sending_queue/presentation/widgets/bottom_bar_sending_queue_widget.dart +++ b/lib/features/sending_queue/presentation/widgets/bottom_bar_sending_queue_widget.dart @@ -46,7 +46,8 @@ class BottomBarSendingQueueWidget extends StatelessWidget { key: Key(SendingEmailActionType.edit.getButtonKey()), text: SendingEmailActionType.edit.getButtonTitle(context), icon: imagePaths.icEdit, - borderRadius: 8, + borderRadius: 0, + backgroundColor: Colors.transparent, iconColor: SendingEmailActionType.edit.getButtonIconColor(_isEditable ? ButtonState.enabled : ButtonState.disabled), textStyle: TextStyle( fontSize: 12, @@ -68,7 +69,8 @@ class BottomBarSendingQueueWidget extends StatelessWidget { key: Key(SendingEmailActionType.resend.getButtonKey()), text: SendingEmailActionType.resend.getButtonTitle(context), icon: imagePaths.icRefresh, - borderRadius: 8, + borderRadius: 0, + backgroundColor: Colors.transparent, iconColor: SendingEmailActionType.resend.getButtonIconColor(_isCanResend ? ButtonState.enabled : ButtonState.disabled), textStyle: TextStyle( fontSize: 12, @@ -87,7 +89,8 @@ class BottomBarSendingQueueWidget extends StatelessWidget { key: Key(SendingEmailActionType.delete.getButtonKey()), text: SendingEmailActionType.delete.getButtonTitle(context), icon: imagePaths.icDeleteComposer, - borderRadius: 8, + borderRadius: 0, + backgroundColor: Colors.transparent, iconColor: SendingEmailActionType.delete.getButtonIconColor(ButtonState.enabled), textStyle: TextStyle( fontSize: 12,