From 57ddee2dc92db16a036e00f81e3f840c6fdbdb1e Mon Sep 17 00:00:00 2001 From: Pupsi28 Date: Tue, 2 Apr 2024 18:24:12 +0200 Subject: [PATCH] removed search option and action bar --- lib/view/pages/talk/components/chatBubble.dart | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/lib/view/pages/talk/components/chatBubble.dart b/lib/view/pages/talk/components/chatBubble.dart index f45a987..b9813c5 100644 --- a/lib/view/pages/talk/components/chatBubble.dart +++ b/lib/view/pages/talk/components/chatBubble.dart @@ -231,7 +231,7 @@ class _ChatBubbleState extends State { icon: const Icon(Icons.arrow_back), ), const SizedBox(width: 10), - const Text('Emoji auswählen'), + const Text('Reagieren'), ], ), content: SizedBox( @@ -248,12 +248,10 @@ class _ChatBubbleState extends State { recentsLimit: 67, emojiSizeMax: 25, noRecents: const Text('Keine zuletzt verwendeten Emojis'), - columns: 7 + columns: 7, ), - bottomActionBarConfig: emojis.BottomActionBarConfig( - showBackspaceButton: false, - backgroundColor: Theme.of(context).hoverColor.withAlpha(50), - buttonColor: Theme.of(context).dividerColor.withAlpha(70), + bottomActionBarConfig: const emojis.BottomActionBarConfig( + enabled: false, ), categoryViewConfig: emojis.CategoryViewConfig( backgroundColor: Theme.of(context).hoverColor,