direction property

VerticalDirection direction

The desired direction of the suggestions box.

The suggestions box will try to open in this direction. If there is insufficient space, it may open in the opposite direction, depending on its configuration.

See effectiveDirection for the actual direction of the suggestions box.

Implementation

VerticalDirection get direction => _direction;
void direction=(VerticalDirection value)

Implementation

set direction(VerticalDirection value) {
  if (_direction == value) return;
  _direction = value;
  notifyListeners();
}