Skip to content

Commit dfd0727

Browse files
author
nturgut
authored
don't throw error for the new autofill request (flutter#19633)
* don't throw error for the new autofill request * change comment
1 parent d98d539 commit dfd0727

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/web_ui/lib/src/engine/text_editing/text_editing.dart

+5
Original file line numberDiff line numberDiff line change
@@ -1152,6 +1152,11 @@ class TextEditingChannel {
11521152
// Since autofill UI is a part of the browser, web engine does not need to utilize this method.
11531153
break;
11541154

1155+
case 'TextInput.finishAutofillContext':
1156+
// TODO(nurhan): Handle saving autofill information on web.
1157+
// https://github.com/flutter/flutter/issues/59378
1158+
break;
1159+
11551160
default:
11561161
throw StateError(
11571162
'Unsupported method call on the flutter/textinput channel: ${call.method}');

0 commit comments

Comments
 (0)