Skip to content
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

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

rutvik110
Copy link
Collaborator

@rutvik110 rutvik110 commented Mar 26, 2025

[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 in defaultSuperEditorDocumentOverlayBuilders when they don't want to build anything.

For ex. within SuperEditorIosToolbarFocalPointDocumentLayerBuilder,

    if (defaultTargetPlatform != TargetPlatform.iOS || SuperEditorIosControlsScope.maybeNearestOf(context) == null) {
      // There's no controls scope. This probably means SuperEditor is configured with
      // a non-iOS gesture mode. Build nothing.
      return const ContentLayerProxyWidget(child: SizedBox());
    }

This is due to the render object RenderConstrainedBox used by SizedBox 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 just SizedBox widgets stacked on top of one another and going in painting mode.

  @override
  void debugPaintSize(PaintingContext context, Offset offset) {
    super.debugPaintSize(context, offset);
    assert(() {
      final Paint paint;
      if (child == null || child!.size.isEmpty) {
        paint = Paint()..color = const Color(0x90909090);
        context.canvas.drawRect(offset & size, paint);
      }
      return true;
    }());
  }

Solution:

Initially tried using SizedBox.shrink but that seems to have no effect. Finally ended up creating a custom widget BuildNothingBox that builds and paints nothing and is used in place of SizedBox within overlay builders. This solves the issue of the greyish overlay in painting mode.

After:

Screenshot 2025-03-26 at 11 22 43 PM

Before:

Screenshot 2025-03-26 at 11 25 36 PM

@rutvik110 rutvik110 changed the title [SuperEditor] Fixes the overlays obscuring editor view in devtools (Resolves #2610) [SuperEditor] Fixes the overlays obscuring editor view in devtools painting mode (Resolves #2610) Mar 26, 2025
…x within overlays that don't wanna display anything
@rutvik110 rutvik110 self-assigned this Mar 26, 2025
@rutvik110 rutvik110 added the area_supereditor Pertains to SuperEditor label Mar 26, 2025
@matthew-carroll
Copy link
Contributor

seems to have been result of using the SizedBox within the document overlay builders in defaultSuperEditorDocumentOverlayBuilders when they don't want to build anything

What about when things are built in the overlay? Do we end up with gray boxes again?

@rutvik110
Copy link
Collaborator Author

seems to have been result of using the SizedBox within the document overlay builders in defaultSuperEditorDocumentOverlayBuilders when they don't want to build 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.

@rutvik110 rutvik110 force-pushed the fix_2610_devtools_overlay branch from 5a49a74 to 038947d Compare March 31, 2025 23:37
@rutvik110 rutvik110 force-pushed the fix_2610_devtools_overlay branch from c4fbbb4 to e93e5ea Compare April 1, 2025 00:35
@rutvik110
Copy link
Collaborator Author

@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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area_supereditor Pertains to SuperEditor
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Super Editor][BUG] - Renders blank when Flutter dev tools shows layout bounds
2 participants