canPaste method

  1. @Deprecated('Use `contextMenuBuilder` instead. ' 'This feature was deprecated after v3.3.0-0.5.pre.')
bool canPaste(
  1. TextSelectionDelegate delegate
)

Whether the text field managed by the given delegate supports pasting from the clipboard.

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

This does not consider the contents of the clipboard. Subclasses may want to, for example, disallow pasting when the clipboard contains an empty string.

Implementation

@Deprecated(
  'Use `contextMenuBuilder` instead. '
  'This feature was deprecated after v3.3.0-0.5.pre.',
)
bool canPaste(TextSelectionDelegate delegate) {
  return delegate.pasteEnabled;
}