Skip to content

Add an anchor system to SuperEditor widget #424

Open
@matthew-carroll

Description

@matthew-carroll

It should be easier than it is to display popover toolbars and other overlay anchored items.

Currently, developers need to provide a ScrollController to SuperEditor so that the developer can update the toolbar's location on every frame. This is very tedious and it's likely to fail when there's more separation between SuperEditor and the rest of the app behavior.

One idea that I have to deal with this is to pass a map of DocumentSelection -> LayerLink. The SuperEditor widget can maintain a set of invisible SizedBox widgets at the locations and sizes represented by the various DocumentSelections and those boxes can be wrapped in a LinkTarget.

Then, builder widgets could be used to easily anchor other widgets in the overlay.

SuperEditorAnchoredBuilder(
  link: _selectionLink,
  overlayBuilder: (context) {
    return EditorToolbar(
      editContext: editContext,
    );
  },
  child: SuperEditor(
     //...
     anchors: {
       // Place an invisible anchor around the user's selection
       _selectionLink: composer.selectionNotifier,
     },
  ),
);

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions