diff --git a/shell/platform/android/io/flutter/embedding/engine/systemchannels/TextInputChannel.java b/shell/platform/android/io/flutter/embedding/engine/systemchannels/TextInputChannel.java index a8fe0d5f95784..33053b54d4d34 100644 --- a/shell/platform/android/io/flutter/embedding/engine/systemchannels/TextInputChannel.java +++ b/shell/platform/android/io/flutter/embedding/engine/systemchannels/TextInputChannel.java @@ -75,6 +75,10 @@ public void onMethodCall(@NonNull MethodCall call, @NonNull MethodChannel.Result result.error("error", exception.getMessage(), null); } break; + case "TextInput.requestAutofill": + textInputMethodHandler.requestAutofill(); + result.success(null); + break; case "TextInput.setPlatformViewClient": final int id = (int) args; textInputMethodHandler.setPlatformViewClient(id);