|
|
|
@ -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]. |
|
|
|
|