onSingleLongTapEnd method Null safety
- LongPressEndDetails details
protected">@protected
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) {
if (shouldShowSelectionToolbar) {
editableText.showToolbar();
}
}