Skip to content

Commit 1df7600

Browse files
add missing case for TextInput.requestAutofill (flutter#17857)
1 parent 2bf9d74 commit 1df7600

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

shell/platform/android/io/flutter/embedding/engine/systemchannels/TextInputChannel.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@ public void onMethodCall(@NonNull MethodCall call, @NonNull MethodChannel.Result
7575
result.error("error", exception.getMessage(), null);
7676
}
7777
break;
78+
case "TextInput.requestAutofill":
79+
textInputMethodHandler.requestAutofill();
80+
result.success(null);
81+
break;
7882
case "TextInput.setPlatformViewClient":
7983
final int id = (int) args;
8084
textInputMethodHandler.setPlatformViewClient(id);

0 commit comments

Comments
 (0)