diff --git a/flutter/lib/mobile/pages/remote_page.dart b/flutter/lib/mobile/pages/remote_page.dart index 7d449f84b..7e78fc298 100644 --- a/flutter/lib/mobile/pages/remote_page.dart +++ b/flutter/lib/mobile/pages/remote_page.dart @@ -479,7 +479,11 @@ class _RemotePageState extends State { : TextFormField( textInputAction: TextInputAction.newline, autocorrect: false, - enableSuggestions: false, + // Flutter 3.16.9 Android. + // `enableSuggestions` causes secure keyboard to be shown. + // https://github.com/flutter/flutter/issues/139143 + // https://github.com/flutter/flutter/issues/146540 + // enableSuggestions: false, autofocus: true, focusNode: _mobileFocusNode, maxLines: null,