Quill controller as text - Flutter #4378
Unanswered
filipbrablec
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I would like to ask, we use a quill editor in Flutter to edit the text we generate in our edit window.
Thanks to the quill editor we change the values of the given text, but we have a problem and that is that when we add for example 150 text and add or edit some text there, we get 150 quill controller calls and the application slows down rapidly, to solve this we want to set the quill controller, thanks to which we add text, delete and so on, to only onlick for example _isEditing = true.
In the meantime if we don't click on it, we want to have text only TEXT without initializing the controller, is there any possibility to have so called quill as text without using the controller? I've tried to pull data from delta and create text based on that, but I don't think it's a good solution, and quill editor readonly is not an option either, because _controller is initialized there as well, so changing with 150 texts still messes up
Thank you so much
Beta Was this translation helpful? Give feedback.
All reactions