From c532fb4de943d9d86118bf13eb63c6cfc82ca0f7 Mon Sep 17 00:00:00 2001 From: Ellet <73608287+freshtechtips@users.noreply.github.com> Date: Sun, 5 Nov 2023 23:18:17 +0300 Subject: [PATCH] Update readonly page --- example/lib/pages/read_only_page.dart | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/example/lib/pages/read_only_page.dart b/example/lib/pages/read_only_page.dart index 0f5af5d6..4324051d 100644 --- a/example/lib/pages/read_only_page.dart +++ b/example/lib/pages/read_only_page.dart @@ -61,15 +61,12 @@ class _ReadOnlyPageState extends State { focusNode: _focusNode, ); } - return Padding( - padding: const EdgeInsets.all(8), - child: Container( - decoration: BoxDecoration( - color: Colors.white, - border: Border.all(color: Colors.grey.shade200), - ), - child: quillEditor, + return Container( + decoration: BoxDecoration( + border: Border.all(color: Colors.grey.shade200), ), + padding: const EdgeInsets.all(8), + child: quillEditor, ); }