onDoubleTapDown method

  1. @protected
void onDoubleTapDown(
  1. TapDragDownDetails details
)

Handler for TextSelectionGestureDetector.onDoubleTapDown.

By default, it selects a word through RenderEditable.selectWord if selectionEnabled and shows toolbar if necessary.

See also:

Implementation

@protected
void onDoubleTapDown(TapDragDownDetails details) {
  if (delegate.selectionEnabled) {
    renderEditable.selectWord(cause: SelectionChangedCause.doubleTap);
    if (shouldShowSelectionToolbar) {
      editableText.showToolbar();
    }
  }
}