@@ -488,6 +488,12 @@ class QuillEditorConfig {
488
488
Brightness ? keyboardAppearance,
489
489
ScrollPhysics ? scrollPhysics,
490
490
ValueChanged <String >? onLaunchUrl,
491
+ bool Function (
492
+ TapDragDownDetails details, TextPosition Function (Offset offset))?
493
+ onTapDown,
494
+ bool Function (
495
+ TapDragUpDetails details, TextPosition Function (Offset offset))?
496
+ onTapUp,
491
497
Iterable <EmbedBuilder >? embedBuilders,
492
498
EmbedBuilder ? unknownEmbedBuilder,
493
499
CustomStyleBuilder ? customStyleBuilder,
@@ -547,6 +553,8 @@ class QuillEditorConfig {
547
553
keyboardAppearance: keyboardAppearance ?? this .keyboardAppearance,
548
554
scrollPhysics: scrollPhysics ?? this .scrollPhysics,
549
555
onLaunchUrl: onLaunchUrl ?? this .onLaunchUrl,
556
+ onTapUp: onTapUp ?? this .onTapUp,
557
+ onTapDown: onTapDown ?? this .onTapDown,
550
558
embedBuilders: embedBuilders ?? this .embedBuilders,
551
559
unknownEmbedBuilder: unknownEmbedBuilder ?? this .unknownEmbedBuilder,
552
560
customStyleBuilder: customStyleBuilder ?? this .customStyleBuilder,
0 commit comments