handlesVisible property

bool handlesVisible

Whether selection handles are visible.

Set to false if you want to hide the handles. Use this property to show or hide the handle without rebuilding them.

Defaults to false.

Implementation

bool get handlesVisible => _handlesVisible;
void handlesVisible=(bool visible)

Implementation

set handlesVisible(bool visible) {
  if (_handlesVisible == visible) {
    return;
  }
  _handlesVisible = visible;
  _updateTextSelectionOverlayVisibilities();
}