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