buildToolbar method

  1. @Deprecated('Use `contextMenuBuilder` instead. ' 'This feature was deprecated after v3.3.0-0.5.pre.')
  2. @override
Widget buildToolbar(
  1. BuildContext context,
  2. Rect globalEditableRegion,
  3. double textLineHeight,
  4. Offset selectionMidpoint,
  5. List<TextSelectionPoint> endpoints,
  6. TextSelectionDelegate delegate,
  7. ValueListenable<ClipboardStatus>? clipboardStatus,
  8. Offset? lastSecondaryTapDownPosition
)
override

Builder for material-style copy/paste text selection toolbar.

Implementation

@Deprecated(
  'Use `contextMenuBuilder` instead. '
  'This feature was deprecated after v3.3.0-0.5.pre.',
)
@override
Widget buildToolbar(
  BuildContext context,
  Rect globalEditableRegion,
  double textLineHeight,
  Offset selectionMidpoint,
  List<TextSelectionPoint> endpoints,
  TextSelectionDelegate delegate,
  ValueListenable<ClipboardStatus>? clipboardStatus,
  Offset? lastSecondaryTapDownPosition,
) {
  return _TextSelectionControlsToolbar(
    globalEditableRegion: globalEditableRegion,
    textLineHeight: textLineHeight,
    selectionMidpoint: selectionMidpoint,
    endpoints: endpoints,
    delegate: delegate,
    clipboardStatus: clipboardStatus,
    handleCut: canCut(delegate) ? () => handleCut(delegate) : null,
    handleCopy: canCopy(delegate) ? () => handleCopy(delegate) : null,
    handlePaste: canPaste(delegate) ? () => handlePaste(delegate) : null,
    handleSelectAll: canSelectAll(delegate) ? () => handleSelectAll(delegate) : null,
  );
}