TF-2717 Replace from cc bcc buttons in to by arrow down button on mobile

This commit is contained in:
dab246
2024-03-19 01:51:55 +07:00
committed by Dat H. Pham
parent f85691ae15
commit 0c1e7e0433
4 changed files with 63 additions and 29 deletions
@@ -2127,4 +2127,10 @@ class ComposerController extends BaseController with DragDropFileMixin {
)
);
}
void handleEnableRecipientsInputAction(bool isEnabled) {
fromRecipientState.value = isEnabled ? PrefixRecipientState.disabled : PrefixRecipientState.enabled;
ccRecipientState.value = isEnabled ? PrefixRecipientState.disabled : PrefixRecipientState.enabled;
bccRecipientState.value = isEnabled ? PrefixRecipientState.disabled : PrefixRecipientState.enabled;
}
}