Add support for android keyboard content insertion (#1236)

pull/1245/head
Richard Marshall 2 years ago committed by GitHub
parent df3afd3f37
commit c1bef0ae4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      lib/src/widgets/editor.dart
  2. 13
      lib/src/widgets/raw_editor.dart
  3. 3
      lib/src/widgets/raw_editor/raw_editor_state_text_input_client_mixin.dart
  4. 2
      pubspec.yaml

@ -187,6 +187,7 @@ class QuillEditor extends StatefulWidget {
this.enableUnfocusOnTapOutside = true,
this.customLinkPrefixes = const <String>[],
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<QuillEditor>
customLinkPrefixes: widget.customLinkPrefixes,
enableUnfocusOnTapOutside: widget.enableUnfocusOnTapOutside,
dialogTheme: widget.dialogTheme,
contentInsertionConfiguration: widget.contentInsertionConfiguration,
);
final editor = I18n(

@ -84,6 +84,7 @@ class RawEditor extends StatefulWidget {
this.onImagePaste,
this.customLinkPrefixes = const <String>[],
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<StatefulWidget> 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].

@ -59,6 +59,9 @@ mixin RawEditorStateTextInputClientMixin on EditorState
enableSuggestions: !widget.readOnly,
keyboardAppearance: widget.keyboardAppearance,
textCapitalization: widget.textCapitalization,
allowedMimeTypes: widget.contentInsertionConfiguration == null
? const <String>[]
: widget.contentInsertionConfiguration!.allowedMimeTypes,
),
);

@ -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:

Loading…
Cancel
Save