diff --git a/app/lib/widgets/editor_body.dart b/app/lib/widgets/editor_body.dart index 96c073e..17e64ce 100644 --- a/app/lib/widgets/editor_body.dart +++ b/app/lib/widgets/editor_body.dart @@ -32,6 +32,10 @@ class EditorBody extends ConsumerWidget { focusNode: FocusNode(), scrollController: scrollController, configurations: QuillEditorConfigurations( + /// TIPS: This is important, + /// TIPS: It means [scrollController] is from another scroll view + /// TIPS: where the editor scrolling behavior shows + scrollable: false, controller: controller..readOnly = readOnly, padding: const EdgeInsets.symmetric(horizontal: 14.0), autoFocus: autoFocus,