From 31f16bedf040b6909afcdcfb7446933b3b895b6e Mon Sep 17 00:00:00 2001 From: singerdmx Date: Sun, 20 Dec 2020 18:19:46 -0800 Subject: [PATCH] Fix missing expands --- app/lib/pages/home_page.dart | 3 ++- lib/widgets/editor.dart | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app/lib/pages/home_page.dart b/app/lib/pages/home_page.dart index b7b5a2da..67ba35ec 100644 --- a/app/lib/pages/home_page.dart +++ b/app/lib/pages/home_page.dart @@ -81,7 +81,8 @@ class _HomePageState extends State { autoFocus: true, readOnly: true, embedBuilder: _embedBuilder, - enableInteractiveSelection: true + enableInteractiveSelection: true, + expands: false, ), ), ), diff --git a/lib/widgets/editor.dart b/lib/widgets/editor.dart index a6cf2624..d8e46fe4 100644 --- a/lib/widgets/editor.dart +++ b/lib/widgets/editor.dart @@ -105,7 +105,7 @@ class QuillEditor extends StatefulWidget { this.enableInteractiveSelection, this.minHeight, this.maxHeight, - this.expands, + @required this.expands, this.textCapitalization, this.keyboardAppearance, this.scrollPhysics, @@ -436,6 +436,7 @@ class RawEditor extends StatefulWidget { assert(toolbarOptions != null, 'toolbarOptions cannot be null'), showCursor = showCursor ?? !readOnly, assert(embedBuilder != null, 'embedBuilder cannot be null'), + assert(expands != null, 'expands cannot be null'), super(key: key); @override