SelectableRegionSelectionStatus enum

The status of the selection under a SelectableRegion.

This value can be accessed for a SelectableRegion by using SelectableRegionSelectionStatusScope.maybeOf.

This value under a SelectableRegion is updated frequently during selection gestures such as clicks and taps to select and keyboard shortcuts.

Inheritance
Available extensions

Values

changing → const SelectableRegionSelectionStatus

Indicates that the selection under a SelectableRegion is changing.

A SelectableRegions selection is changing when it is being updated by user through selection gestures and keyboard shortcuts. For example, during a text selection drag with a click + drag, a SelectableRegions selection is considered changing until the user releases the click, then it will be considered finalized.

finalized → const SelectableRegionSelectionStatus

Indicates that the selection under a SelectableRegion is finalized.

A SelectableRegions selection is finalized when it is no longer being updated by the user through selection gestures or keyboard shortcuts. For example, the selection will be finalized on a mouse drag end, touch long press drag end, a single click to collapse the selection, a double click/tap to select a word, ctrl + A / cmd + A to select all, or a triple click/tap to select a paragraph.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<SelectableRegionSelectionStatus>
A constant List of the values in this enum, in order of their declaration.