canSelectAll method

bool canSelectAll (TextSelectionDelegate delegate)

Whether the current selection of the text field managed by the given delegate can be extended to include the entire content of the text field.

Subclasses can use this to decide if they should expose the select all functionality to the user.

Implementation

bool canSelectAll(TextSelectionDelegate delegate) {
  return delegate.textEditingValue.text.isNotEmpty && delegate.textEditingValue.selection.isCollapsed;
}