Open
Description
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 DocumentSelection
s 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,
},
),
);