Matej Knopp
                                            Matej Knopp
                                        
                                    Hi, this is a known issue, it is tracked here: https://github.com/flutter/flutter/issues/84908 The PR to fix it is being discussed here: https://github.com/flutter/engine/pull/26835
I tried this with KDE/Plasma 5.22.2/X11 with high contrast theme but so far I'm unable to rperoduce this. Which Gtk version do you have installed?
No luck reproducing this. As far as I can tell Gtk sets proper window type atom (i.e. `_NET_WM_WINDOW_TYPE_DROPDOWN_MENU`) and it's Kwin responsibility not to unfocus parent window for child that...
@dcharkes, could it be that `kCodesignIdentity` is not set properly in `Environment`? I had a brief look but I couldn't find where it is set. It should match `EXPANDED_CODE_SIGN_IDENTITY` from...
It seems like it would be missing `"-dCodesignIdentity=${EXPANDED_CODE_SIGN_IDENTITY}"` inside `macos_assemble.sh`, but for some reason it still doesn't codesign.
So missing `-dCodesignIdentity` when invoking `flutter assemble` is a part of the problem. But there is another one - the `macos_assembe.sh` script, the part where the native assets and rest...
We can do codesigning in Dart, I'm just not sure we can do it as a part of `Flutter Assemble`. I didn't find any way to specify code signing information...
> I haven't looked at the source code yet, but I have some thoughts based on the write-up. Mostly, I want to make sure that we don't over correct in...
@matthew-carroll, please look at [render_object_ext](https://github.com/superlistapp/super_editor/blob/126a2131c4009d8ab4f9870eac723c257b692785/super_editor/lib/src/infrastructure/render_object_ext.dart) inside the PR. It implements `size`, `hasSize`, `globalToLocal` and `localToGlobal` on `RenderObject`, which can be either a `RenderSliver` or `RenderBox`.
The alternative for intrinsic height is `shrinkWrap`. As is common for other scrollable widgets.