TF-2188 Remove radius and background color bottom bar sending queue

(cherry picked from commit 03d03dd02be6dc3e3e584de4bf6ad4a19f3a56b7)
This commit is contained in:
dab246
2023-10-05 16:05:25 +07:00
committed by Dat H. Pham
parent 058f28b402
commit 9968abd58f
@@ -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,