- don't throw showAutocorrectionPromptRect not implemented. The function is called with every keystroke as a user is typing (#981)

pull/983/head
Michael Allen 3 years ago committed by GitHub
parent f52ea506c8
commit aa8f82f7aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      lib/src/widgets/raw_editor/raw_editor_state_text_input_client_mixin.dart

@ -283,7 +283,8 @@ mixin RawEditorStateTextInputClientMixin on EditorState
@override
void showAutocorrectionPromptRect(int start, int end) {
throw UnimplementedError();
// this is called VERY OFTEN when editing a document, no longer throw an exception
// throw UnimplementedError();
}
@override

Loading…
Cancel
Save