flutter-quill icon indicating copy to clipboard operation
flutter-quill copied to clipboard

By Clicking on control , the embeded video inside the editor dissapears.

Open AnkithaMadanbhavi opened this issue 1 year ago • 0 comments

Is there an existing issue for this?

Flutter Quill version

9.1.1

Steps to reproduce

  1. Add any video using the embeded video button.
  2. Once the video is visible in the editor , click on control . The video dissapears for few seconds and appears again.
  3. This is creating a lot of issue in copy pasting a content , when video is uploaded in the editor.

Expected results

Video should not dissapear when clicked on control.

Actual results

Video Dissapears when clciked on control.

Code sample

QuillEditor( configurations: QuillEditorConfigurations( controller: widget.quillController, scrollable: true, padding: const EdgeInsets.all(10), autoFocus: false, readOnly: false, scrollPhysics: const ScrollPhysics(), expands: false, minHeight: 700, maxHeight: 700, showCursor: true, embedBuilders: FlutterQuillEmbeds.editorWebBuilders( imageEmbedConfigurations: const QuillEditorImageEmbedConfigurations(), videoEmbedConfigurations: const QuillEditorWebVideoEmbedConfigurations() ), ), focusNode: quillFocusNode, scrollController: ScrollController(), ),

Screenshots or Video

https://github.com/singerdmx/flutter-quill/assets/159043476/c53ed7ba-dd89-447f-96ce-048430f85f5e

Logs

Logs
[Paste your logs here]

AnkithaMadanbhavi avatar Feb 27 '24 09:02 AnkithaMadanbhavi