소스 검색

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;