Closed Sesa1988 closed 2 months ago
Hi @Sesa1988 ! I believe I'm running into a similar issue. Have you found any workaround?
Hi @Sesa1988 ! I believe I'm running into a similar issue. Have you found any workaround?
No I have not found any workaround.
I am currently working on issue 1907 which referenced your issue.
Can you tell me more about how you are creating your editor instances. For example, are you switching between tabs or creating new editor instances.
Open new child route with editor without focus and long note text
What is 'route'? Issue 1907 selects the editor instance in the second tab. The content cannot be scrolled until something is selected in that window.
Is your issue similar or different???
I am currently working on issue 1907 which referenced your issue.
Can you tell me more about how you are creating your editor instances. For example, are you switching between tabs or creating new editor instances.
Open new child route with editor without focus and long note text
What is 'route'? Issue 1907 selects the editor instance in the second tab. The content cannot be scrolled until something is selected in that window.
Is your issue similar or different???
Yes, it sounds like my issue.
I push a new view via pushNamed and pass the content via initState.
I cannot scroll until I click in the editor. When I try to scroll without click into it and click later it will jump down like I scrolled.
I am currently working on issue 1907 which referenced your issue.
Can you tell me more about how you are creating your editor instances. For example, are you switching between tabs or creating new editor instances.
Open new child route with editor without focus and long note text
What is 'route'? Issue 1907 selects the editor instance in the second tab. The content cannot be scrolled until something is selected in that window.
Is your issue similar or different???
I can confirm that it also fixed my issue.
Is there an existing issue for this?
Flutter Quill version
9.3.1
Steps to reproduce
Expected results
Long text is displayed and can be scrolled without clicking into it and have to open the keyboard
Actual results
Long text is displayed but cant be scrolled and somehow lags. When you click in, it scrolls around to the position where you would except you should be.
Code sample
Code sample
```dart import 'dart:convert'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:flutter_quill/flutter_quill.dart'; import 'package:flutter_quill/quill_delta.dart'; import 'package:foxynotes/app_localizations.dart'; import 'package:foxynotes/blocs/settings/settings_bloc.dart'; import 'package:foxynotes/screens/note_details/bloc/note_details_bloc.dart'; class NoteEditor extends StatefulWidget { final String _content; final FocusNode _focusNode; final bool _shouldFocus; const NoteEditor(this._content, this._focusNode, this._shouldFocus, {super.key}); @override State