restore ability to pass in key to QuillEditor (#2093)

pull/2096/head v10.1.9
Michael Allen 8 months ago committed by GitHub
parent 1cc6a7cdc1
commit c739f6c12d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 7
      lib/src/editor/editor.dart

@ -141,6 +141,7 @@ class QuillEditor extends StatefulWidget {
factory QuillEditor({
required FocusNode focusNode,
required ScrollController scrollController,
Key? key,
/// Controller and configurations are required
///
@ -164,13 +165,15 @@ class QuillEditor extends StatefulWidget {
return QuillEditor._(
focusNode: focusNode,
scrollController: scrollController,
controller: controller);
controller: controller,
key: key);
}
const QuillEditor._(
{required this.focusNode,
required this.scrollController,
required this.controller});
required this.controller,
super.key});
factory QuillEditor.basic({
/// The controller for the quill editor widget of flutter quill

Loading…
Cancel
Save