From 407ea6254e61925106b693f7537f7c42a2dd014e Mon Sep 17 00:00:00 2001 From: Kelrap <99418823+Kelrap@users.noreply.github.com> Date: Wed, 19 Nov 2025 11:42:50 -0500 Subject: [PATCH] Close the keyboard when use opens activity menu (#4673) --------- Co-authored-by: ggurdin --- lib/pages/chat/chat.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/pages/chat/chat.dart b/lib/pages/chat/chat.dart index 670b8215e..44fb3ac3f 100644 --- a/lib/pages/chat/chat.dart +++ b/lib/pages/chat/chat.dart @@ -2333,6 +2333,7 @@ class ChatController extends State ValueNotifier showActivityDropdown = ValueNotifier(false); void toggleShowDropdown() async { if (mounted) { + inputFocus.unfocus(); showActivityDropdown.value = !showActivityDropdown.value; } }