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, ); }