android, secure keyboard on remote input (#8425)
Signed-off-by: fufesou <linlong1266@gmail.com>
This commit is contained in:
parent
c1322b47c3
commit
39e3da1eb0
@ -479,7 +479,11 @@ class _RemotePageState extends State<RemotePage> {
|
|||||||
: TextFormField(
|
: TextFormField(
|
||||||
textInputAction: TextInputAction.newline,
|
textInputAction: TextInputAction.newline,
|
||||||
autocorrect: false,
|
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,
|
autofocus: true,
|
||||||
focusNode: _mobileFocusNode,
|
focusNode: _mobileFocusNode,
|
||||||
maxLines: null,
|
maxLines: null,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user