From 429a0a888f165cf99c7daf7e5001e98e2fcc7fb7 Mon Sep 17 00:00:00 2001 From: Michael Allen Date: Fri, 16 Feb 2024 15:00:40 -0800 Subject: [PATCH] Scribble scroll fix (#1745) * Fix bug with scribble when the editor is scrollable - the scribble area was also being scrolled, now it is fixed * code clean up - move ScribbleFocusable above CompositedTransformTarget when scrolling is not enabled for consistency with the scrolling scribble area fix --- .../widgets/raw_editor/raw_editor_state.dart | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/lib/src/widgets/raw_editor/raw_editor_state.dart b/lib/src/widgets/raw_editor/raw_editor_state.dart index aad36b61..d33d0cdc 100644 --- a/lib/src/widgets/raw_editor/raw_editor_state.dart +++ b/lib/src/widgets/raw_editor/raw_editor_state.dart @@ -540,15 +540,15 @@ class QuillRawEditorState extends EditorState child = BaselineProxy( textStyle: _styles!.paragraph!.style, padding: baselinePadding, - child: QuillSingleChildScrollView( - controller: _scrollController, - physics: widget.configurations.scrollPhysics, - viewportBuilder: (_, offset) => CompositedTransformTarget( - link: _toolbarLayerLink, - child: MouseRegion( - cursor: SystemMouseCursors.text, - child: _scribbleFocusable( - QuilRawEditorMultiChildRenderObject( + child: _scribbleFocusable( + QuillSingleChildScrollView( + controller: _scrollController, + physics: widget.configurations.scrollPhysics, + viewportBuilder: (_, offset) => CompositedTransformTarget( + link: _toolbarLayerLink, + child: MouseRegion( + cursor: SystemMouseCursors.text, + child: QuilRawEditorMultiChildRenderObject( key: _editorKey, offset: offset, document: doc, @@ -574,13 +574,13 @@ class QuillRawEditorState extends EditorState ), ); } else { - child = CompositedTransformTarget( - link: _toolbarLayerLink, - child: Semantics( - child: MouseRegion( - cursor: SystemMouseCursors.text, - child: _scribbleFocusable( - QuilRawEditorMultiChildRenderObject( + child = _scribbleFocusable( + CompositedTransformTarget( + link: _toolbarLayerLink, + child: Semantics( + child: MouseRegion( + cursor: SystemMouseCursors.text, + child: QuilRawEditorMultiChildRenderObject( key: _editorKey, document: doc, selection: controller.selection,