|
|
|
@ -66,9 +66,8 @@ class EditorTextSelectionGestureDetectorBuilder { |
|
|
|
|
/// Creates a [EditorTextSelectionGestureDetectorBuilder]. |
|
|
|
|
/// |
|
|
|
|
/// The [delegate] must not be null. |
|
|
|
|
EditorTextSelectionGestureDetectorBuilder({ |
|
|
|
|
required this.delegate, |
|
|
|
|
this.detectWordBoundary = true}); |
|
|
|
|
EditorTextSelectionGestureDetectorBuilder( |
|
|
|
|
{required this.delegate, this.detectWordBoundary = true}); |
|
|
|
|
|
|
|
|
|
/// The delegate for this [EditorTextSelectionGestureDetectorBuilder]. |
|
|
|
|
/// |
|
|
|
@ -341,26 +340,28 @@ class EditorTextSelectionGestureDetectorBuilder { |
|
|
|
|
/// |
|
|
|
|
/// The [child] or its subtree should contain [EditableText]. |
|
|
|
|
Widget build( |
|
|
|
|
{required HitTestBehavior behavior, required Widget child, Key? key, |
|
|
|
|
bool detectWordBoundary = true}) { |
|
|
|
|
{required HitTestBehavior behavior, |
|
|
|
|
required Widget child, |
|
|
|
|
Key? key, |
|
|
|
|
bool detectWordBoundary = true}) { |
|
|
|
|
return EditorTextSelectionGestureDetector( |
|
|
|
|
key: key, |
|
|
|
|
onTapDown: onTapDown, |
|
|
|
|
onForcePressStart: delegate.forcePressEnabled ? onForcePressStart : null, |
|
|
|
|
onForcePressEnd: delegate.forcePressEnabled ? onForcePressEnd : null, |
|
|
|
|
onSingleTapUp: onSingleTapUp, |
|
|
|
|
onSingleTapCancel: onSingleTapCancel, |
|
|
|
|
onSingleLongTapStart: onSingleLongTapStart, |
|
|
|
|
onSingleLongTapMoveUpdate: onSingleLongTapMoveUpdate, |
|
|
|
|
onSingleLongTapEnd: onSingleLongTapEnd, |
|
|
|
|
onDoubleTapDown: onDoubleTapDown, |
|
|
|
|
onSecondarySingleTapUp: onSecondarySingleTapUp, |
|
|
|
|
onDragSelectionStart: onDragSelectionStart, |
|
|
|
|
onDragSelectionUpdate: onDragSelectionUpdate, |
|
|
|
|
onDragSelectionEnd: onDragSelectionEnd, |
|
|
|
|
behavior: behavior, |
|
|
|
|
detectWordBoundary: detectWordBoundary, |
|
|
|
|
child: child |
|
|
|
|
); |
|
|
|
|
key: key, |
|
|
|
|
onTapDown: onTapDown, |
|
|
|
|
onForcePressStart: |
|
|
|
|
delegate.forcePressEnabled ? onForcePressStart : null, |
|
|
|
|
onForcePressEnd: delegate.forcePressEnabled ? onForcePressEnd : null, |
|
|
|
|
onSingleTapUp: onSingleTapUp, |
|
|
|
|
onSingleTapCancel: onSingleTapCancel, |
|
|
|
|
onSingleLongTapStart: onSingleLongTapStart, |
|
|
|
|
onSingleLongTapMoveUpdate: onSingleLongTapMoveUpdate, |
|
|
|
|
onSingleLongTapEnd: onSingleLongTapEnd, |
|
|
|
|
onDoubleTapDown: onDoubleTapDown, |
|
|
|
|
onSecondarySingleTapUp: onSecondarySingleTapUp, |
|
|
|
|
onDragSelectionStart: onDragSelectionStart, |
|
|
|
|
onDragSelectionUpdate: onDragSelectionUpdate, |
|
|
|
|
onDragSelectionEnd: onDragSelectionEnd, |
|
|
|
|
behavior: behavior, |
|
|
|
|
detectWordBoundary: detectWordBoundary, |
|
|
|
|
child: child); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|