Fix missing expands

pull/13/head
singerdmx 4 years ago
parent 5efbfd5fbe
commit 31f16bedf0
  1. 3
      app/lib/pages/home_page.dart
  2. 3
      lib/widgets/editor.dart

@ -81,7 +81,8 @@ class _HomePageState extends State<HomePage> {
autoFocus: true, autoFocus: true,
readOnly: true, readOnly: true,
embedBuilder: _embedBuilder, embedBuilder: _embedBuilder,
enableInteractiveSelection: true enableInteractiveSelection: true,
expands: false,
), ),
), ),
), ),

@ -105,7 +105,7 @@ class QuillEditor extends StatefulWidget {
this.enableInteractiveSelection, this.enableInteractiveSelection,
this.minHeight, this.minHeight,
this.maxHeight, this.maxHeight,
this.expands, @required this.expands,
this.textCapitalization, this.textCapitalization,
this.keyboardAppearance, this.keyboardAppearance,
this.scrollPhysics, this.scrollPhysics,
@ -436,6 +436,7 @@ class RawEditor extends StatefulWidget {
assert(toolbarOptions != null, 'toolbarOptions cannot be null'), assert(toolbarOptions != null, 'toolbarOptions cannot be null'),
showCursor = showCursor ?? !readOnly, showCursor = showCursor ?? !readOnly,
assert(embedBuilder != null, 'embedBuilder cannot be null'), assert(embedBuilder != null, 'embedBuilder cannot be null'),
assert(expands != null, 'expands cannot be null'),
super(key: key); super(key: key);
@override @override

Loading…
Cancel
Save