enableInteractiveSelection property

bool enableInteractiveSelection

If false, describeSemanticsConfiguration will not set the configuration's cursor motion or set selection callbacks.

True by default.

Implementation

bool get enableInteractiveSelection => _enableInteractiveSelection;
void enableInteractiveSelection= (bool value)

Implementation

set enableInteractiveSelection(bool value) {
  if (_enableInteractiveSelection == value)
    return;
  _enableInteractiveSelection = value;
  markNeedsTextLayout();
  markNeedsSemanticsUpdate();
}