diff --git a/packages/flutter_chat/lib/src/screens/chat_detail/widgets/chat_bottom.dart b/packages/flutter_chat/lib/src/screens/chat_detail/widgets/chat_bottom.dart index 2028b74..48ce0eb 100644 --- a/packages/flutter_chat/lib/src/screens/chat_detail/widgets/chat_bottom.dart +++ b/packages/flutter_chat/lib/src/screens/chat_detail/widgets/chat_bottom.dart @@ -127,10 +127,12 @@ class ChatBottomInputSection extends HookWidget { ), // this ensures that that there is space at the end of the // textfield - suffixIcon: AbsorbPointer( - child: Opacity( - opacity: 0.0, - child: messageSendButtons, + suffixIcon: ExcludeFocus( + child: AbsorbPointer( + child: Opacity( + opacity: 0.0, + child: messageSendButtons, + ), ), ), hintText: options.translations.messagePlaceholder,