setSelectionRects method

void setSelectionRects(
  1. List<SelectionRect> selectionRects
)

Send the bounding boxes of the current selected glyphs in the client to the platform's text input plugin.

These are used by the engine during a UIDirectScribbleInteraction.

Implementation

void setSelectionRects(List<SelectionRect> selectionRects) {
  if (!listEquals(_cachedSelectionRects, selectionRects)) {
    _cachedSelectionRects = selectionRects;
    TextInput._instance._setSelectionRects(selectionRects);
  }
}