Results 530 comments of Ellet

I will probably separate the implementation into different packages for a more scalable solution, I did want to have things as simple as possible (not necessarily simple, only as simple...

Renaming the plugin from `quill_native_bridge` to `quill_native_integration` can take some time and is error-prone process, so decided to delay it later, as for the web package, instead of creating `quill_native_bridge_platform_interface`...

I decided to move `quill_native_bridge` outside this repo for the following reasons: - The version is now separated, when a breaking change is introduced in `flutter quill` it doesn't affect...

While writing some basic integration tests, the tests were failing when I added `copyHTMLToClipbaord`, it seems I accidentally (using something with the IDE) changed something while adding this feature causing...

While introducing the Windows implementation of the plugin, I separated it from `quill_native_bridge` (`quill_native_bridge_windows`) and decided to implement it as a Dart plugin (in dart code) with [`ffi`](https://pub.dev/packages/ffi) and [win32](https://pub.dev/packages/win32)....

> could enclose in try-finally to ensure the clipboard is released even if an exception is thrown. I considered this but it seems it doesn't throw any exception, I checked...

> I was referring to the code that uses lower case: Good catch, should not be case sensitive. If the input was ``, then this loop will continue until the...

Currently, the experimental Linux implementation is using [xclip](https://github.com/astrand/xclip) which is designed for x11. Will separate them first then will support Wayland with [wl-clipboard](https://github.com/bugaevc/wl-clipboard). > Was not able to support macOS...

@CatHood0 If you have the time, can you test the example of `quill_native_bridge` or `flutter_quill` on your Linux distro to see if it works properly? It should work on most...

@AtlasAutocode When you have the time, can you review `copyHtmlToClipboard()`? I'm unfamiliar with Win32 and this is actually the first time most of the things I done here either which...