alignOriginY property

  1. @override
Alignment? get alignOriginY
override

What point of the origin to use on the y-axis.

In most implementations:

  • Alignment.start == clientRect.top
  • Alignment.center == clientRect.top + clientRect.height / 2
  • Alignment.end == clientRect.top + clientRect.height

Changing this value will fire a new event on measure.

Implementation

@override
Alignment? get alignOriginY => _popupSource!.alignOriginY;