buildToolbar abstract method
- @Deprecated('Use `contextMenuBuilder` instead. ' 'This feature was deprecated after v3.3.0-0.5.pre.')
- BuildContext context,
- Rect globalEditableRegion,
- double textLineHeight,
- Offset selectionMidpoint,
- List<
TextSelectionPoint> endpoints, - TextSelectionDelegate delegate,
- ValueListenable<
ClipboardStatus> ? clipboardStatus, - Offset? lastSecondaryTapDownPosition,
Builds a toolbar near a text selection.
Typically displays buttons for copying and pasting text.
The globalEditableRegion parameter is the TextField size of the global
coordinate system in logical pixels.
The textLineHeight parameter is the RenderEditable.preferredLineHeight
of the RenderEditable we are building a toolbar for.
The selectionMidpoint parameter is a general calculation midpoint
parameter of the toolbar. More detailed position information
is computable from the endpoints parameter.
Implementation
@Deprecated(
'Use `contextMenuBuilder` instead. '
'This feature was deprecated after v3.3.0-0.5.pre.',
)
Widget buildToolbar(
BuildContext context,
Rect globalEditableRegion,
double textLineHeight,
Offset selectionMidpoint,
List<TextSelectionPoint> endpoints,
TextSelectionDelegate delegate,
ValueListenable<ClipboardStatus>? clipboardStatus,
Offset? lastSecondaryTapDownPosition,
);