From 39154183b75e3e3987ba86d1c1917f2dadbff1e3 Mon Sep 17 00:00:00 2001 From: Ellet <73608287+freshtechtips@users.noreply.github.com> Date: Tue, 7 Nov 2023 14:37:14 +0300 Subject: [PATCH] Enable animations in the default example --- example/lib/pages/home_page.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/example/lib/pages/home_page.dart b/example/lib/pages/home_page.dart index b2236b12..a1c71d06 100644 --- a/example/lib/pages/home_page.dart +++ b/example/lib/pages/home_page.dart @@ -568,6 +568,9 @@ class _HomePageState extends State { child: QuillProvider( configurations: QuillConfigurations( controller: _controller, + sharedConfigurations: QuillSharedConfigurations( + animationConfigurations: QuillAnimationConfigurations.enableAll(), + ), ), child: Column( mainAxisAlignment: MainAxisAlignment.spaceBetween,