diff --git a/lib/pages/chat/input_bar.dart b/lib/pages/chat/input_bar.dart index c651e0408..e46740bda 100644 --- a/lib/pages/chat/input_bar.dart +++ b/lib/pages/chat/input_bar.dart @@ -448,7 +448,10 @@ class InputBar extends StatelessWidget { keyboardType: keyboardType, textInputAction: textInputAction, autofocus: autofocus!, - spellCheckConfiguration: const SpellCheckConfiguration(), + spellCheckConfiguration: SpellCheckConfiguration( + spellCheckSuggestionsToolbarBuilder: (context, state) => + const SizedBox.shrink(), + ), inputFormatters: [ LengthLimitingTextInputFormatter((maxPDUSize / 3).floor()), ],