onSingleLongTapEnd method
- LongPressEndDetails details
Handler for TextSelectionGestureDetector.onSingleLongTapEnd.
By default, it shows toolbar if necessary.
See also:
- TextSelectionGestureDetector.onSingleLongTapEnd, which triggers this callback.
Implementation
@protected
void onSingleLongTapEnd(LongPressEndDetails details) {
_onSingleLongTapEndOrCancel();
if (shouldShowSelectionToolbar) {
editableText.showToolbar();
}
}