From 4b13b3df03aa36278c9839a1326b76e4acc18d9a Mon Sep 17 00:00:00 2001 From: Diogo Date: Tue, 27 Aug 2024 10:55:57 +0100 Subject: [PATCH] with anim for apperance close --- apps/ios/Shared/Views/ChatList/UserPicker.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/ios/Shared/Views/ChatList/UserPicker.swift b/apps/ios/Shared/Views/ChatList/UserPicker.swift index 62d6876af8..8d85466b15 100644 --- a/apps/ios/Shared/Views/ChatList/UserPicker.swift +++ b/apps/ios/Shared/Views/ChatList/UserPicker.swift @@ -105,7 +105,9 @@ struct UserPicker: View { } else { ThemeManager.applyTheme(DefaultTheme.LIGHT.themeName) } - userPickerVisible.toggle() + withAnimation { + userPickerVisible.toggle() + } }.padding(.bottom, 7) } }