We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
11.0
the function of the listener will execute twice... textEditorController.changes.listen((DocChange event) { // will exec. 2 times... });
these are the delta's
{"before":[{"insert":"H\n"}],"change":[{"retain":1,"attributes":{"bold":true}}]}, {"before":[{"insert":"H\n"}],"change":[{"retain":1,"attributes":{"bold":true}}]}
triggered only once with correct docChange
so only one entry:
{"before":[{"insert":"\n"}],"change":[{"insert": "H","attributes":{"bold":true}}]}
see above
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Have you checked for an existing issue?
Flutter Quill Version
11.0
Steps to Reproduce
the function of the listener will execute twice...
textEditorController.changes.listen((DocChange event) {
// will exec. 2 times...
});
these are the delta's
Expected results
triggered only once with correct docChange
so only one entry:
Actual results
see above
Additional Context
No response
The text was updated successfully, but these errors were encountered: