FlowyEditor

An easily extensible, test-covered rich text editing component for Flutter

Features

  • Extensible
    • Support for extending different styles of views.
    • 支持扩展不同样式的视图
    • Support extending custom shortcut key parsing
    • 支持扩展自定义快捷键解析
    • Support extending toolbar/popup list(WIP)
    • 支持扩展toolbar/popup list(WIP)
    • ...
  • Collaboration Ready
    • All changes to the document are based on operation. Theoretically, collaborative editing will be supported in the future.
    • 所有对文档的修改都是基于operation。理论上未来会支持协同编辑。
  • Good stability guarantees
    • Current code coverage >= 60%, we will still continue to add more test cases.

由于可扩展的结构以及随着功能的增多我们鼓励每个提交的文件或者代码段都可以在test下增加对应的测试用例代码尽可能得保证提交者不需要担心自己的代码影响了已有的逻辑。

Due to the extensible structure and the increase in functionality, we encourage each commit to add test case code under test to ensure that the committer does not have to worry about their code affecting the existing logic as much as possible.

Getting started

flutter pub add flowy_editor
flutter pub get

Usage

Creates editor with empty document

final editorState = EditorState.empty();
final editor = FlowyEditor(
    editorState: editorState,
    keyEventHandlers: const [],
    customBuilders: const {},
);

Creates editor from JSON file

final json = ...;
final editorState = EditorState(StateTree.fromJson(data));
final editor = FlowyEditor(
    editorState: editorState,
    keyEventHandlers: const [],
    customBuilders: const {},
);

For more. Run the example.

git clone https://github.com/AppFlowy-IO/AppFlowy.git
cd frontend/app_flowy/packages/flowy_editor/example
flutter run

Examples

  • 样式扩展
  • 快捷键扩展

Glossary

我们正在编写更详细的说明目前使用请查照API文档

Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated. Please look at CONTRIBUTING.md for details.