PositionedAlign constructor

const PositionedAlign({
  1. Key? key,
  2. required Alignment alignment,
  3. required Widget child,
})

Creates a PositionedAlign widget.

alignment determines the position of the child within the parent widget. child is the widget that will be positioned according to the alignment.

Implementation

const PositionedAlign(
    {super.key, required this.alignment, required this.child});