diff --git a/lib/views/messageview.dart b/lib/views/messageview.dart index 03cabd7d..8ee6196c 100644 --- a/lib/views/messageview.dart +++ b/lib/views/messageview.dart @@ -212,6 +212,7 @@ class _MessageViewState extends State { autofocus: !Platform.isAndroid, textInputAction: TextInputAction.newline, keyboardType: TextInputType.multiline, + enableIMEPersonalizedLearning: false, minLines: 1, maxLines: null, onFieldSubmitted: _sendMessage, diff --git a/lib/widgets/buttontextfield.dart b/lib/widgets/buttontextfield.dart index e7483361..46e88796 100644 --- a/lib/widgets/buttontextfield.dart +++ b/lib/widgets/buttontextfield.dart @@ -37,6 +37,7 @@ class _CwtchButtonTextFieldState extends State { readOnly: widget.readonly, showCursor: !widget.readonly, focusNode: _focusNode, + enableIMEPersonalizedLearning: false, decoration: InputDecoration( suffixIcon: IconButton( onPressed: widget.onPressed, diff --git a/lib/widgets/passwordfield.dart b/lib/widgets/passwordfield.dart index 4cf061b8..acd79787 100644 --- a/lib/widgets/passwordfield.dart +++ b/lib/widgets/passwordfield.dart @@ -37,6 +37,7 @@ class _CwtchTextFieldState extends State { controller: widget.controller, validator: widget.validator, obscureText: obscureText, + enableIMEPersonalizedLearning: false, autofillHints: widget.autoFillHints, autovalidateMode: AutovalidateMode.always, onFieldSubmitted: widget.action, diff --git a/lib/widgets/textfield.dart b/lib/widgets/textfield.dart index c1be445d..64b4f020 100644 --- a/lib/widgets/textfield.dart +++ b/lib/widgets/textfield.dart @@ -39,6 +39,7 @@ class _CwtchTextFieldState extends State { validator: widget.validator, onChanged: widget.onChanged, autofocus: widget.autofocus, + enableIMEPersonalizedLearning: false, focusNode: _focusNode, decoration: InputDecoration( labelText: widget.labelText,