AppFlowy/frontend/app_flowy/packages/flowy_editor
2022-08-16 18:34:37 +08:00
..
assets feat: implement popup list service 2022-08-03 16:34:11 +08:00
documentation chore: publish preparation 2022-08-16 18:14:09 +08:00
example Merge branch 'AppFlowy-IO:main' into documentation/flowy_editor 2022-08-16 17:06:49 +08:00
lib docs: add documentation for selectable 2022-08-16 18:34:37 +08:00
test fix: checkbox + underline doesn’t work when the checkbox is checked 2022-08-16 11:31:43 +08:00
.gitignore chore: publish preparation 2022-08-16 18:14:09 +08:00
.metadata feat: add flowy_editor package 2022-07-11 18:07:36 +08:00
analysis_options.yaml feat: add flowy_editor package 2022-07-11 18:07:36 +08:00
CHANGELOG.md chore: publish preparation 2022-08-16 15:47:48 +08:00
LICENSE feat: add flowy_editor package 2022-07-11 18:07:36 +08:00
pubspec.yaml chore: publish preparation 2022-08-16 16:11:46 +08:00
README.md chore: publish preparation 2022-08-16 18:14:09 +08:00

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.