-
Notifications
You must be signed in to change notification settings - Fork 261
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[SuperEditor] Fixes the overlays obscuring editor view in devtools painting mode (Resolves #2610) #2618
base: main
Are you sure you want to change the base?
Conversation
…x within overlays that don't wanna display anything
What about when things are built in the overlay? Do we end up with gray boxes again? |
In the case of the default document overlay builders, we don't. |
super_editor/lib/src/default_editor/document_caret_overlay.dart
Outdated
Show resolved
Hide resolved
super_editor/lib/src/infrastructure/flutter/build_nothing_box.dart
Outdated
Show resolved
Hide resolved
super_editor/lib/src/infrastructure/flutter/build_nothing_box.dart
Outdated
Show resolved
Hide resolved
super_editor/lib/src/default_editor/document_gestures_touch_ios.dart
Outdated
Show resolved
Hide resolved
super_editor/lib/src/default_editor/document_gestures_touch_android.dart
Outdated
Show resolved
Hide resolved
super_editor/lib/src/default_editor/document_gestures_touch_ios.dart
Outdated
Show resolved
Hide resolved
5a49a74
to
038947d
Compare
c4fbbb4
to
e93e5ea
Compare
@matthew-carroll Some of the goldens seems be failing on the ci. After updating the goldens locally, they're passing locally but for some reason still failing on ci. Not sure what's going on there. Running on Flutter master 3.31.0-1.0.pre.348 |
[SuperEditor] Fixes the overlays obscuring editor view in devtools painting mode (Resolves #2610)
The greyish overlays obscuring the editor view in painting mode seems to have been result of using the
SizedBox
within the document overlay builders indefaultSuperEditorDocumentOverlayBuilders
when they don't want to build anything.For ex. within
SuperEditorIosToolbarFocalPointDocumentLayerBuilder
,This is due to the render object
RenderConstrainedBox
used bySizedBox
paints the widget with a greyish color in debug mode resulting in the overlays we see when painting mode is on. This can be confirmed by testing this in a regular app with justSizedBox
widgets stacked on top of one another and going in painting mode.Solution:
Initially tried using
SizedBox.shrink
but that seems to have no effect. Finally ended up creating a custom widgetBuildNothingBox
that builds and paints nothing and is used in place ofSizedBox
within overlay builders. This solves the issue of the greyish overlay in painting mode.After:
Before: