Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lib/web_ui/lib/src/engine/text_editing/text_editing.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1152,6 +1152,11 @@ class TextEditingChannel {
// Since autofill UI is a part of the browser, web engine does not need to utilize this method.
break;

case 'TextInput.finishAutofillContext':
// TODO(nurhan): Handle saving autofill information on web.
// https://github.com/flutter/flutter/issues/59378
break;

default:
throw StateError(
'Unsupported method call on the flutter/textinput channel: ${call.method}');
Expand Down