resolvedAlignment property

  1. @protected
Alignment resolvedAlignment

The Alignment to use for aligning the child.

This is the alignment resolved against textDirection. Subclasses should use resolvedAlignment instead of alignment directly, for computing the child's offset.

The performLayout method will be called when the value changes.

Implementation

@protected
Alignment get resolvedAlignment => _resolvedAlignment ??= alignment.resolve(textDirection);