瀏覽代碼

feat(doc): document's state

Vincent Chan 2 年之前
父節點
當前提交
f0ed15440a
共有 1 個文件被更改,包括 9 次插入0 次删除
  1. 9 0
      frontend/app_flowy/packages/flowy_editor/lib/src/editor_state.dart

+ 9 - 0
frontend/app_flowy/packages/flowy_editor/lib/src/editor_state.dart

@@ -26,6 +26,15 @@ enum CursorUpdateReason {
   others,
 }
 
+/// The state of the editor.
+///
+/// The state including:
+/// - The document to render
+/// - The state of the selection.
+///
+/// [EditorState] also includes the services of the editor:
+/// - Selection service
+/// - Scroll service
 class EditorState {
   final StateTree document;