FluentTextSelectionToolbar.editableText constructor

FluentTextSelectionToolbar.editableText({
  1. Key? key,
  2. required EditableTextState editableTextState,
})

Create an instance of FluentTextSelectionToolbar with the default children for an EditableText.

See also:

Implementation

FluentTextSelectionToolbar.editableText({
  super.key,
  required EditableTextState editableTextState,
})  : buttonItems = editableTextState.contextMenuButtonItems,
      anchors = editableTextState.contextMenuAnchors;