Matt Carroll
Matt Carroll
Remove any overlay control builders from `SuperTextField` and use ancestor composition to configure their builders and `LeaderLink`s. This is the `SuperTextField` version of this ticket: https://github.com/superlistapp/super_editor/issues/1509
`SuperEditor` and `SuperReader` now use `ContentLayers` to position content above and below document layout. `SuperTextField` has always had something similar, which is `SuperTextLayout`. However, it seems that we're still doing...
Consider adding examples to the Example app, or a new entrypoint, along with adding tests, which verify the rendering performance under various loads. See https://github.com/superlistapp/super_editor/issues/1528#issuecomment-1767209981 for more information.
By default, a window is resizable. I'd like to display a window at a set width, that the user isn't allowed to change. I'd like the height to respect a...
When setting the window size, background, etc, upon launch, there's a visual glitch because the window begins with the standard Flutter configuration and then switches to the desired configuration when...
This library has `TitlebarSafeArea`, which pushes content down below the title bar. I'm displaying tabs in the title bar area and I need the tabs to avoid the traffic lights,...
As far as I can tell, based on the README documentation, all window configurations go through imperative static methods. Consider offering a widget for most/all of these configurations. You don't...
`WindowManipulator` is completely based on static methods. This seems to create at least three limitations: Developers can't use Dart's built-in builder syntax: ```dart WindowManipulator ..makeTitlebarTransparent() ..enableFullSizeContentView() ..etc ``` It seems...
We're using `jinja` in our static site generator called [Static Shock](https://staticshock.io). In general we're very happy with this implementation of Jinja. It provided us with a reasonable templating library for...
In `super_editor` we use a `Listener` widget to implement scrolling in our documents. Before Flutter 3.3, when scrolling with a Magic Mouse on Mac, the `Listener` widget reported events that...