From c1bef0ae4f357a3d4e97041ea4b1ef4b0fb8b669 Mon Sep 17 00:00:00 2001 From: Richard Marshall Date: Thu, 25 May 2023 14:56:21 -0700 Subject: [PATCH] Add support for android keyboard content insertion (#1236) --- lib/src/widgets/editor.dart | 7 +++++++ lib/src/widgets/raw_editor.dart | 13 ++++++++++++- .../raw_editor_state_text_input_client_mixin.dart | 3 +++ pubspec.yaml | 2 +- 4 files changed, 23 insertions(+), 2 deletions(-) diff --git a/lib/src/widgets/editor.dart b/lib/src/widgets/editor.dart index 906b67fb..c946e0b7 100644 --- a/lib/src/widgets/editor.dart +++ b/lib/src/widgets/editor.dart @@ -187,6 +187,7 @@ class QuillEditor extends StatefulWidget { this.enableUnfocusOnTapOutside = true, this.customLinkPrefixes = const [], this.dialogTheme, + this.contentInsertionConfiguration, Key? key, }) : super(key: key); @@ -427,6 +428,11 @@ class QuillEditor extends StatefulWidget { /// Configures the dialog theme. final QuillDialogTheme? dialogTheme; + /// Configuration of handler for media content inserted via the system input method. + /// + /// See [https://api.flutter.dev/flutter/widgets/EditableText/contentInsertionConfiguration.html] + final ContentInsertionConfiguration? contentInsertionConfiguration; + @override QuillEditorState createState() => QuillEditorState(); } @@ -528,6 +534,7 @@ class QuillEditorState extends State customLinkPrefixes: widget.customLinkPrefixes, enableUnfocusOnTapOutside: widget.enableUnfocusOnTapOutside, dialogTheme: widget.dialogTheme, + contentInsertionConfiguration: widget.contentInsertionConfiguration, ); final editor = I18n( diff --git a/lib/src/widgets/raw_editor.dart b/lib/src/widgets/raw_editor.dart index 444c49dd..fbf5528c 100644 --- a/lib/src/widgets/raw_editor.dart +++ b/lib/src/widgets/raw_editor.dart @@ -84,6 +84,7 @@ class RawEditor extends StatefulWidget { this.onImagePaste, this.customLinkPrefixes = const [], this.dialogTheme, + this.contentInsertionConfiguration, }) : assert(maxHeight == null || maxHeight > 0, 'maxHeight cannot be null'), assert(minHeight == null || minHeight >= 0, 'minHeight cannot be null'), assert(maxHeight == null || minHeight == null || maxHeight >= minHeight, @@ -270,6 +271,11 @@ class RawEditor extends StatefulWidget { /// Configures the dialog theme. final QuillDialogTheme? dialogTheme; + /// Configuration of handler for media content inserted via the system input method. + /// + /// See [https://api.flutter.dev/flutter/widgets/EditableText/contentInsertionConfiguration.html] + final ContentInsertionConfiguration? contentInsertionConfiguration; + @override State createState() => RawEditorState(); } @@ -326,7 +332,12 @@ class RawEditorState extends EditorState TextDirection get _textDirection => Directionality.of(context); @override - void insertContent(KeyboardInsertedContent content) {} + void insertContent(KeyboardInsertedContent content) { + assert(widget.contentInsertionConfiguration?.allowedMimeTypes + .contains(content.mimeType) ?? + false); + widget.contentInsertionConfiguration?.onContentInserted.call(content); + } /// Returns the [ContextMenuButtonItem]s representing the buttons in this /// platform's default selection menu for [RawEditor]. diff --git a/lib/src/widgets/raw_editor/raw_editor_state_text_input_client_mixin.dart b/lib/src/widgets/raw_editor/raw_editor_state_text_input_client_mixin.dart index e3b9ff5f..f3cec425 100644 --- a/lib/src/widgets/raw_editor/raw_editor_state_text_input_client_mixin.dart +++ b/lib/src/widgets/raw_editor/raw_editor_state_text_input_client_mixin.dart @@ -59,6 +59,9 @@ mixin RawEditorStateTextInputClientMixin on EditorState enableSuggestions: !widget.readOnly, keyboardAppearance: widget.keyboardAppearance, textCapitalization: widget.textCapitalization, + allowedMimeTypes: widget.contentInsertionConfiguration == null + ? const [] + : widget.contentInsertionConfiguration!.allowedMimeTypes, ), ); diff --git a/pubspec.yaml b/pubspec.yaml index d2ab913a..b6403a01 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -7,7 +7,7 @@ repository: https://github.com/singerdmx/flutter-quill environment: sdk: ">=2.17.0 <4.0.0" - flutter: ">=3.0.0" + flutter: ">=3.10.0" dependencies: flutter: