From 47031e1250d6a03a1ab8054a3b4c8e627a511d3f Mon Sep 17 00:00:00 2001 From: Ellet Date: Wed, 13 Dec 2023 11:57:07 +0300 Subject: [PATCH] Update the example --- example/lib/presentation/quill/quill_screen.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/lib/presentation/quill/quill_screen.dart b/example/lib/presentation/quill/quill_screen.dart index b3b73eee..3ed06a74 100644 --- a/example/lib/presentation/quill/quill_screen.dart +++ b/example/lib/presentation/quill/quill_screen.dart @@ -76,7 +76,7 @@ class _QuillScreenState extends State { onPressed: () { final html = _controller.document.toDelta().toHtml(); _controller.document = - Document.fromDelta(QuillController.fromHtml(html)); + Document.fromDelta(Document.fromHtml(html)); }, icon: const Icon(Icons.html), ),