LongCatIsLooong

Results 102 comments of LongCatIsLooong

There's no additional google testing failures. Feel free to merge once https://github.com/flutter/website/pull/8916 gets LGTM'd. You may have to merge it manually. The google testing failures are 3 golden image changes...

[`SelectableRegion`](https://master-api.flutter.dev/flutter/widgets/SelectableRegion-class.html) in theory allows you to select static text.

For reasons stated in https://github.com/flutter/flutter/pull/107530#issuecomment-1233239301, I think using `_fields` for serialization could lead to hard-to-debug issues. Feel free to reopen this (or create a new PR) if you have new...

Sorry for the late reply. Exposing `_fields` under a descriptive name (ideally something that tells people this property may not be a comprehensive list of fields, some fields could be...

Sorry for the delayed response. I'm not aware of any existing benchmarks that cover this, the framework only sends new rects when the underlying text layout changes, or when the...

Ah I see it's using `_UIKeyboardTextSelectionInteraction`. What happens when you use the spacebar selection gesture to extend the selection outside of the text field's bounds? I think the framework currently...

#115900 removes backspace/delete handling from the framework on Apple platforms so this should be working fine on macOS/iOS now. Let's see if Linux/windows need the same treatment. For Android, we...

> So here's the question: besides surrogate pairs and emoji graphemes, is it really desired behaviour to delete the entire grapheme? Perhaps the solution would be to revert https://github.com/flutter/flutter/pull/115900 to...

This seems related: https://github.com/flutter/flutter/issues/132917. There's also a different selector `deleteBackwardByDecomposingPreviousCharacter`.

Also on a different note, @rrousselGit @fzyzcjy how would like to receive the due credit? I can add a code comment before the `OverlayPortal` class and say "this is Inspired...