Ellet
Ellet
It seems that there are even more important things to clean up, I have also noticed some duplicated logic, and a new update will be soon however it's not related...
> or if we're using something somewhere that do register those, why they those actions are missing in the first place It seems that we're using [`intentForMacOSSelector()`](https://github.com/flutter/flutter/blob/stable/packages/flutter/lib/src/widgets/default_text_editing_shortcuts.dart#L587-L648) from Flutter inside...
The current code is quite confusing, even after the cleanup we have `editor_keyboard_shortcut_actions.dart` and `raw_editor_actions.dart`, `ScrollToDocumentBoundaryIntent` is already registered intent by default so including it in: ```dart SingleActivator( LogicalKeyboardKey.home, control:...
See #2288, while cleaning up, I'm having even more questions and the answers are not clear, I have spent almost one or two days trying to fix a minor bug,...
No need to be sorry, take as much as time as you need. I appreciate your commitment to tackling the code reviews and issues tonight. If you need any assistance...
This PR is not the best in improving the organization and code quality though it's slightly more organized than the current code. I will merge however I have many questions,...
If you're using [flutter_keyboard_visibility_temp_fork](https://pub.dev/packages/flutter_keyboard_visibility_temp_fork) (or if it's a transitive dependency) then this issue is not from `flutter_keyboard_visibility`. Run `flutter pub upgrade` to update the temp fork to the latest where...
Please try with the latest version, this should be no longer an issue.
This [line](https://github.com/singerdmx/flutter-quill/blob/7f96ea7379590d6c191880ff55a1b8045be4623a/lib/src/editor/widgets/text/text_line.dart#L656) is causing the issue. Need to handle this in a better way without using the null check operator, if we're not sure why then should use assert or...
While trying to add support for `onGifPaste` (introduced in #1788) and it seems to not be a feature that's supported natively on macOS. Copying GIF image using Google Chrome on...