TraversalDirection enum

A direction along either the horizontal or vertical axes.

This is used by the DirectionalFocusTraversalPolicyMixin, and FocusNode.focusInDirection to indicate which direction to look in for the next focus.

Inheritance

Constructors

TraversalDirection()
const

Values

up → const TraversalDirection

Indicates a direction above the currently focused widget.

Indicates a direction to the right of the currently focused widget.

This direction is unaffected by the Directionality of the current context.

down → const TraversalDirection

Indicates a direction below the currently focused widget.

left → const TraversalDirection

Indicates a direction to the left of the currently focused widget.

This direction is unaffected by the Directionality of the current context.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
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<TraversalDirection>
A constant List of the values in this enum, in order of their declaration.