dartlangeditorflutterflutter-appsflutter-examplesflutter-packageflutter-widgetquillquill-deltaquilljsreactquillrich-textrich-text-editorwysiwygwysiwyg-editor
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.3 KiB
53 lines
1.3 KiB
1 year ago
|
import 'package:flutter_quill/flutter_quill.dart';
|
||
|
|
||
1 year ago
|
import '../utils/quill_image_utils.dart';
|
||
1 year ago
|
|
||
1 year ago
|
/// Extension functions on [QuillController]
|
||
|
/// that make it easier to insert the embed blocks
|
||
|
///
|
||
|
/// and provide some other extra utilities
|
||
1 year ago
|
extension QuillControllerExt on QuillController {
|
||
|
int get index => selection.baseOffset;
|
||
|
int get length => selection.extentOffset - index;
|
||
1 year ago
|
|
||
|
/// Insert image embed block, it requires the [imageSource]
|
||
|
///
|
||
|
/// it could be local image on the system file
|
||
|
/// http image on the network
|
||
|
///
|
||
|
/// image base 64
|
||
1 year ago
|
void insertImageBlock({
|
||
1 year ago
|
required String imageSource,
|
||
1 year ago
|
}) {
|
||
|
this
|
||
1 year ago
|
..skipRequestKeyboard = true
|
||
1 year ago
|
..replaceText(
|
||
|
index,
|
||
|
length,
|
||
1 year ago
|
BlockEmbed.image(imageSource),
|
||
1 year ago
|
null,
|
||
|
);
|
||
|
}
|
||
1 year ago
|
|
||
1 year ago
|
/// Insert video embed block, it requires the [videoUrl]
|
||
|
///
|
||
|
/// it could be the video url directly (.mp4)
|
||
|
/// either locally on file system
|
||
|
/// or http video on the network
|
||
|
///
|
||
|
/// it also supports youtube video url
|
||
1 year ago
|
void insertVideoBlock({
|
||
|
required String videoUrl,
|
||
|
}) {
|
||
|
this
|
||
|
..skipRequestKeyboard = true
|
||
|
..replaceText(index, length, BlockEmbed.video(videoUrl), null);
|
||
|
}
|
||
1 year ago
|
|
||
|
QuillImageUtilities get imageUtilities {
|
||
|
return QuillImageUtilities(
|
||
|
controller: this,
|
||
|
);
|
||
|
}
|
||
1 year ago
|
}
|