Super Editor is an open source, configurable, extensible text editor and document renderer for Flutter apps.
super_editor
was initiated by Superlist and is being implemented and maintained by SuperDeclarative!, Superlist, and the contributors.
Super Editor aims to support all platforms. For now, Super Editor supports the following:
Supported
Super Editor is actively developed against these platforms.
- Mac OS
- Web
- Android
- iOS
Unverified
These platforms might work, but Super Editor is not developing against them.
- Windows
- Linux
Super Editor comes with an example implementation to showcase the core functionality. It also exposes example UI elements on how to interact with the Editor. It currently supports MacOS and Web and will be expanded along the way, as we will support more platforms. You can run the example editor from the example directory:
cd example
flutter run -d macos
The example implementation is only a proof of concept. Expect separate packages to implement various UIs on top of the editor.
Display a default text editor with the SuperEditor
widget:
class _MyAppState extends State<MyApp> {
void build(context) {
// Display a visual, editable document.
//
// A SuperEditor does not include any app bar controls or popup
// controls. If you want such controls, you need to implement
// them yourself.
//
// The standard editor displays and styles headers, paragraphs,
// ordered and unordered lists, images, and horizontal rules.
// Paragraphs know how to display bold, italics, and strikethrough.
// Key combinations are provided for bold (cmd b) and italics (cmd i).
return SuperEditor.standard(
editor: _myDocumentEditor,
);
}
}
A SuperEditor
widget requires a DocumentEditor
, which is a pure-Dart class that's responsible for applying changes to a Document
. A DocumentEditor
, in turn, requires a reference to the Document
that it will alter. Specifically, a DocumentEditor
requires a MutableDocument
.
// A MutableDocument is an in-memory Document. Create the starting
// content that you want your editor to display.
//
// Your MutableDocument does not need to contain any content/nodes.
// In that case, your editor will initially display nothing.
final myDoc = MutableDocument(
nodes: [
ParagraphNode(
id: DocumentEditor.createNodeId(),
text: AttributedText(text: 'This is a header'),
metadata: {
'blockType': header1Attribution,
},
),
ParagraphNode(
id: DocumentEditor.createNodeId(),
text: AttributedText(text:'This is the first paragraph'),
),
],
);
// With a MutableDocument, create a DocumentEditor, which knows how
// to apply changes to the MutableDocument.
final docEditor = DocumentEditor(document: myDoc);
// Next: pass the docEditor to your Editor widget.
The SuperEditor
widget can be customized.
class _MyAppState extends State<MyApp> {
void build(context) {
return SuperEditor.custom(
editor: _myDocumentEditor,
textStyleBuilder: /** INSERT CUSTOMIZATION **/ null,
selectionStyle: /** INSERT CUSTOMIZATION **/ null,
keyboardActions: /** INSERT CUSTOMIZATION **/ null,
componentBuilders: /** INSERT CUSTOMIZATION **/ null,
);
}
}
If your app requires deeper customization than SuperEditor
provides, you can construct your own version of the SuperEditor
widget by using lower level tools within the super_editor
package.
See the wiki for more information about how to customize an editor experience.
TODO: implement static document rendering