From 1899295fd3a9bdbcc4b9ff154395252d518260de Mon Sep 17 00:00:00 2001 From: Mike Allen Date: Sun, 28 Jan 2024 07:44:40 -0800 Subject: [PATCH] formatting clean up --- lib/src/models/documents/document.dart | 10 +++++----- lib/src/widgets/raw_editor/raw_editor_state.dart | 3 +-- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/lib/src/models/documents/document.dart b/lib/src/models/documents/document.dart index 9912b441..ce628007 100644 --- a/lib/src/models/documents/document.dart +++ b/lib/src/models/documents/document.dart @@ -60,7 +60,7 @@ class Document { } final StreamController documentChangeObserver = - StreamController.broadcast(); + StreamController.broadcast(); final History history = History(); @@ -320,7 +320,7 @@ class Document { final originalDelta = toDelta(); for (final op in delta.toList()) { final style = - op.attributes != null ? Style.fromJson(op.attributes) : null; + op.attributes != null ? Style.fromJson(op.attributes) : null; if (op.isInsert) { // Must normalize data before inserting into the document, makes sure @@ -439,7 +439,7 @@ class Document { 'Document can only contain insert operations but ${op.key} found.'); } final style = - op.attributes != null ? Style.fromJson(op.attributes) : null; + op.attributes != null ? Style.fromJson(op.attributes) : null; final data = _normalize(op.data); _root.insert(offset, data, style); offset += op.length!; @@ -486,8 +486,8 @@ class Document { static Delta fromHtml(String html) { final markdown = html2md .convert( - html, - ) + html, + ) .replaceAll('unsafe:', ''); final mdDocument = md.Document(encodeHtml: false); diff --git a/lib/src/widgets/raw_editor/raw_editor_state.dart b/lib/src/widgets/raw_editor/raw_editor_state.dart index 43c1d086..37ee67b7 100644 --- a/lib/src/widgets/raw_editor/raw_editor_state.dart +++ b/lib/src/widgets/raw_editor/raw_editor_state.dart @@ -224,8 +224,7 @@ class QuillRawEditorState extends EditorState textEditingValue.selection.start, textEditingValue.selection.end - textEditingValue.selection.start, deltaFromClipboard, - TextSelection.collapsed( - offset: textEditingValue.selection.end)); + TextSelection.collapsed(offset: textEditingValue.selection.end)); bringIntoView(textEditingValue.selection.extent);