Ellet
Ellet
I will start as soon as I can. It might be 1-2 days before I do.
I have tried `SpellCheckerSession` on Android (platform-specific API) and in my case, it didn't work quite well, on the emulator it takes longer than expected to return the result, on...
> This part refers to the fact that we can handle languages not only created by the users themselves (through the LanguageIdentifier class) but it also allows us to change...
> Could it be that internally the service is not being used even if we pass it in the parameters? I forgot to mention that I used `fetchSpellCheckSuggestions(locale, text)` with...
I think we need to refactor our `SpellCheckService` a bit. We probably want to extend it from Flutter [`SpellCheckService`](https://github.com/flutter/flutter/blob/a7cd788d80ccb238e9b70316d89d2717fdc0c928/packages/flutter/lib/src/services/spell_check.dart#L101). This will require breaking changes which is a bit unfortunate, we...
The fix to this bug was reverted in 10.4.2 as it caused another bug. See [Issue #2121](https://github.com/singerdmx/flutter-quill/issues/2121).
If the user paste using the paste button above the keyboard, it should alwats paste as text. This behavior is specific to Android and will apply to all apps. As...
> Not quite sure how to check if flutter_quill_extensions is used. There are different ways, one of them is to check the type of `ClipboardService` static instance. > Do you...
> However, for some reason I can't reproduce pasting formatted text copied from the browser, no matter which clipboard plugin I use. I mean that `getHTML` function inside `_pasteHTML` method...
> By the way, "instance" is misspelled in the code, we should correct it in the same PR: `ClipboardServiceProvider.instacne`. https://github.com/singerdmx/flutter-quill/blob/ce5eb86b10ffc0cbccd1074b24e6028e3b2ea84d/lib/src/services/clipboard/clipboard_service_provider.dart#L7-L19 It seems that `static ClipboardService get instacne => _instance;` is...